Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
7e708545
Kaydet (Commit)
7e708545
authored
Kas 08, 2012
tarafından
Noel Grandin
Kaydeden (comit)
Stephan Bergmann
Kas 28, 2012
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
fdo#46808, remove some more XMultiServiceFactory fields
Change-Id: Ida82837f6eaca1a59e85f5e9798084096d07b1a3
üst
60f6c757
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
17 deletions
+4
-17
contentinfo.hxx
ucbhelper/inc/ucbhelper/contentinfo.hxx
+0
-9
contenthelper.cxx
ucbhelper/source/provider/contenthelper.cxx
+2
-2
contentinfo.cxx
ucbhelper/source/provider/contentinfo.cxx
+2
-6
No files found.
ucbhelper/inc/ucbhelper/contentinfo.hxx
Dosyayı görüntüle @
7e708545
...
...
@@ -22,7 +22,6 @@
#include <com/sun/star/ucb/XCommandInfo.hpp>
#include <com/sun/star/ucb/XCommandEnvironment.hpp>
#include <com/sun/star/lang/XMultiServiceFactory.hpp>
#include <com/sun/star/lang/XTypeProvider.hpp>
#include <com/sun/star/beans/XPropertySetInfo.hpp>
#include <cppuhelper/weak.hxx>
...
...
@@ -51,8 +50,6 @@ class PropertySetInfo :
public
com
::
sun
::
star
::
lang
::
XTypeProvider
,
public
com
::
sun
::
star
::
beans
::
XPropertySetInfo
{
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>
m_xSMgr
;
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
ucb
::
XCommandEnvironment
>
m_xEnv
;
com
::
sun
::
star
::
uno
::
Sequence
<
com
::
sun
::
star
::
beans
::
Property
>*
...
...
@@ -66,8 +63,6 @@ private:
public
:
PropertySetInfo
(
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>&
rxSMgr
,
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
ucb
::
XCommandEnvironment
>&
rxEnv
,
ContentImplHelper
*
pContent
);
virtual
~
PropertySetInfo
();
...
...
@@ -111,8 +106,6 @@ class CommandProcessorInfo :
public
com
::
sun
::
star
::
lang
::
XTypeProvider
,
public
com
::
sun
::
star
::
ucb
::
XCommandInfo
{
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>
m_xSMgr
;
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
ucb
::
XCommandEnvironment
>
m_xEnv
;
com
::
sun
::
star
::
uno
::
Sequence
<
com
::
sun
::
star
::
ucb
::
CommandInfo
>*
...
...
@@ -128,8 +121,6 @@ private:
public
:
CommandProcessorInfo
(
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
lang
::
XMultiServiceFactory
>&
rxSMgr
,
const
com
::
sun
::
star
::
uno
::
Reference
<
com
::
sun
::
star
::
ucb
::
XCommandEnvironment
>&
rxEnv
,
ContentImplHelper
*
pContent
);
virtual
~
CommandProcessorInfo
();
...
...
ucbhelper/source/provider/contenthelper.cxx
Dosyayı görüntüle @
7e708545
...
...
@@ -1063,7 +1063,7 @@ ContentImplHelper::getCommandInfo(
if
(
!
m_pImpl
->
m_xCommandsInfo
.
is
()
)
m_pImpl
->
m_xCommandsInfo
=
new
CommandProcessorInfo
(
m_xSMgr
,
xEnv
,
this
);
=
new
CommandProcessorInfo
(
xEnv
,
this
);
else
if
(
!
bCache
)
m_pImpl
->
m_xCommandsInfo
->
reset
();
...
...
@@ -1081,7 +1081,7 @@ ContentImplHelper::getPropertySetInfo(
if
(
!
m_pImpl
->
m_xPropSetInfo
.
is
()
)
m_pImpl
->
m_xPropSetInfo
=
new
PropertySetInfo
(
m_xSMgr
,
xEnv
,
this
);
=
new
PropertySetInfo
(
xEnv
,
this
);
else
if
(
!
bCache
)
m_pImpl
->
m_xPropSetInfo
->
reset
();
...
...
ucbhelper/source/provider/contentinfo.cxx
Dosyayı görüntüle @
7e708545
...
...
@@ -43,11 +43,9 @@ using namespace com::sun::star;
namespace
ucbhelper
{
PropertySetInfo
::
PropertySetInfo
(
const
uno
::
Reference
<
lang
::
XMultiServiceFactory
>&
rxSMgr
,
const
uno
::
Reference
<
com
::
sun
::
star
::
ucb
::
XCommandEnvironment
>&
rxEnv
,
ContentImplHelper
*
pContent
)
:
m_xSMgr
(
rxSMgr
),
m_xEnv
(
rxEnv
),
:
m_xEnv
(
rxEnv
),
m_pProps
(
0
),
m_pContent
(
pContent
)
{
...
...
@@ -218,11 +216,9 @@ sal_Bool PropertySetInfo::queryProperty(
//=========================================================================
CommandProcessorInfo
::
CommandProcessorInfo
(
const
uno
::
Reference
<
lang
::
XMultiServiceFactory
>&
rxSMgr
,
const
uno
::
Reference
<
com
::
sun
::
star
::
ucb
::
XCommandEnvironment
>&
rxEnv
,
ContentImplHelper
*
pContent
)
:
m_xSMgr
(
rxSMgr
),
m_xEnv
(
rxEnv
),
:
m_xEnv
(
rxEnv
),
m_pCommands
(
0
),
m_pContent
(
pContent
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment