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
359c573d
Kaydet (Commit)
359c573d
authored
Mar 21, 2014
tarafından
Norbert Thiebaud
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
kill ucbhelper XSERVICEINFO_NOFACTORY_DECL
Change-Id: I02bb3e7a06451347d8ce72af17461bec91803954
üst
eabc5d49
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
78 additions
and
31 deletions
+78
-31
macros.hxx
include/ucbhelper/macros.hxx
+0
-20
resultset.hxx
include/ucbhelper/resultset.hxx
+9
-1
resultsethelper.hxx
include/ucbhelper/resultsethelper.hxx
+9
-1
cachedcontentresultset.hxx
ucb/source/cacher/cachedcontentresultset.hxx
+8
-2
cachedcontentresultsetstub.hxx
ucb/source/cacher/cachedcontentresultsetstub.hxx
+8
-2
cacheddynamicresultset.hxx
ucb/source/cacher/cacheddynamicresultset.hxx
+8
-1
cacheddynamicresultsetstub.hxx
ucb/source/cacher/cacheddynamicresultsetstub.hxx
+9
-1
provprox.hxx
ucb/source/core/provprox.hxx
+9
-1
ucbstore.hxx
ucb/source/core/ucbstore.hxx
+18
-2
No files found.
include/ucbhelper/macros.hxx
Dosyayı görüntüle @
359c573d
...
...
@@ -199,26 +199,6 @@ GETTYPES_IMPL_START( Class ) \
CPPU_TYPE_REF( I11 ) \
GETTYPES_IMPL_END
// XServiceInfo decl.
#define XSERVICEINFO_NOFACTORY_DECL() \
virtual OUString SAL_CALL \
getImplementationName() \
throw( com::sun::star::uno::RuntimeException, std::exception ); \
virtual sal_Bool SAL_CALL \
supportsService( const OUString& ServiceName ) \
throw( com::sun::star::uno::RuntimeException, std::exception ); \
virtual com::sun::star::uno::Sequence< OUString > SAL_CALL \
getSupportedServiceNames() \
throw( com::sun::star::uno::RuntimeException, std::exception ); \
\
static OUString \
getImplementationName_Static(); \
static com::sun::star::uno::Sequence< OUString > \
getSupportedServiceNames_Static();
// XServiceInfo impl. internals
...
...
include/ucbhelper/resultset.hxx
Dosyayı görüntüle @
359c573d
...
...
@@ -124,7 +124,15 @@ public:
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
// XServiceInfo
XSERVICEINFO_NOFACTORY_DECL
()
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
static
OUString
getImplementationName_Static
();
static
css
::
uno
::
Sequence
<
OUString
>
getSupportedServiceNames_Static
();
// XComponent
virtual
void
SAL_CALL
...
...
include/ucbhelper/resultsethelper.hxx
Dosyayı görüntüle @
359c573d
...
...
@@ -151,7 +151,15 @@ public:
throw
(
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
);
// XServiceInfo
XSERVICEINFO_NOFACTORY_DECL
()
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
static
OUString
getImplementationName_Static
();
static
css
::
uno
::
Sequence
<
OUString
>
getSupportedServiceNames_Static
();
// XComponent ( base class of XDynamicResultSet )
virtual
void
SAL_CALL
...
...
ucb/source/cacher/cachedcontentresultset.hxx
Dosyayı görüntüle @
359c573d
...
...
@@ -215,9 +215,15 @@ public:
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
XSERVICEINFO_NOFACTORY_DECL
()
static
OUString
getImplementationName_Static
();
static
css
::
uno
::
Sequence
<
OUString
>
getSupportedServiceNames_Static
();
// XPropertySet inherited
...
...
ucb/source/cacher/cachedcontentresultsetstub.hxx
Dosyayı görüntüle @
359c573d
...
...
@@ -123,9 +123,15 @@ public:
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
XSERVICEINFO_NOFACTORY_DECL
()
static
OUString
getImplementationName_Static
();
static
css
::
uno
::
Sequence
<
OUString
>
getSupportedServiceNames_Static
();
// XFetchProvider
...
...
ucb/source/cacher/cacheddynamicresultset.hxx
Dosyayı görüntüle @
359c573d
...
...
@@ -72,8 +72,15 @@ public:
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
XSERVICEINFO_NOFACTORY_DECL
()
static
OUString
getImplementationName_Static
();
static
css
::
uno
::
Sequence
<
OUString
>
getSupportedServiceNames_Static
();
// own methods ( inherited )
...
...
ucb/source/cacher/cacheddynamicresultsetstub.hxx
Dosyayı görüntüle @
359c573d
...
...
@@ -66,8 +66,16 @@ public:
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
// XServiceInfo
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
static
OUString
getImplementationName_Static
();
static
css
::
uno
::
Sequence
<
OUString
>
getSupportedServiceNames_Static
();
XSERVICEINFO_NOFACTORY_DECL
()
};
...
...
ucb/source/core/provprox.hxx
Dosyayı görüntüle @
359c573d
...
...
@@ -130,7 +130,15 @@ public:
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
// XServiceInfo
XSERVICEINFO_NOFACTORY_DECL
()
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
static
OUString
getImplementationName_Static
();
static
css
::
uno
::
Sequence
<
OUString
>
getSupportedServiceNames_Static
();
// XContentProviderSupplier
virtual
::
com
::
sun
::
star
::
uno
::
Reference
<
...
...
ucb/source/core/ucbstore.hxx
Dosyayı görüntüle @
359c573d
...
...
@@ -130,7 +130,15 @@ public:
// XServiceInfo
XSERVICEINFO_NOFACTORY_DECL
()
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
static
OUString
getImplementationName_Static
();
static
css
::
uno
::
Sequence
<
OUString
>
getSupportedServiceNames_Static
();
// XPropertySetRegistry
virtual
com
::
sun
::
star
::
uno
::
Reference
<
...
...
@@ -200,7 +208,15 @@ public:
virtual
~
PersistentPropertySet
();
// XServiceInfo
XSERVICEINFO_NOFACTORY_DECL
()
virtual
OUString
SAL_CALL
getImplementationName
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
sal_Bool
SAL_CALL
supportsService
(
const
OUString
&
ServiceName
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
virtual
css
::
uno
::
Sequence
<
OUString
>
SAL_CALL
getSupportedServiceNames
()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
);
static
OUString
getImplementationName_Static
();
static
css
::
uno
::
Sequence
<
OUString
>
getSupportedServiceNames_Static
();
// XComponent
virtual
void
SAL_CALL
...
...
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