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
a94390d2
Kaydet (Commit)
a94390d2
authored
Ara 19, 2013
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
A singleton is not a service
Change-Id: I9059370e21e753a9578f231fd0c0eb0a1d6a981e
üst
969bd8aa
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
14 deletions
+2
-14
dba.component
dbaccess/util/dba.component
+0
-1
log.component
extensions/source/logging/log.component
+0
-1
res.component
extensions/source/resource/res.component
+0
-1
resourceservices.cxx
extensions/source/resource/resourceservices.cxx
+1
-0
ContextChangeEventMultiplexer.cxx
framework/source/services/ContextChangeEventMultiplexer.cxx
+1
-10
fwk.component
framework/util/fwk.component
+0
-1
No files found.
dbaccess/util/dba.component
Dosyayı görüntüle @
a94390d2
...
...
@@ -23,7 +23,6 @@
<service
name=
"com.sun.star.chart2.data.DatabaseDataProvider"
/>
</implementation>
<implementation
name=
"com.sun.star.comp.dba.DataAccessDescriptorFactory"
>
<service
name=
"com.sun.star.sdb.DataAccessDescriptorFactory"
/>
<singleton
name=
"com.sun.star.sdb.DataAccessDescriptorFactory"
/>
</implementation>
<implementation
name=
"com.sun.star.comp.dba.OCommandDefinition"
>
...
...
extensions/source/logging/log.component
Dosyayı görüntüle @
a94390d2
...
...
@@ -29,7 +29,6 @@
<service
name=
"com.sun.star.logging.FileHandler"
/>
</implementation>
<implementation
name=
"com.sun.star.comp.extensions.LoggerPool"
>
<service
name=
"com.sun.star.logging.LoggerPool"
/>
<singleton
name=
"com.sun.star.logging.LoggerPool"
/>
</implementation>
<implementation
name=
"com.sun.star.comp.extensions.PlainTextFormatter"
>
...
...
extensions/source/resource/res.component
Dosyayı görüntüle @
a94390d2
...
...
@@ -20,7 +20,6 @@
<component
loader=
"com.sun.star.loader.SharedLibrary"
environment=
"@CPPU_ENV@"
prefix=
"res"
xmlns=
"http://openoffice.org/2010/uno-components"
>
<implementation
name=
"com.sun.star.comp.resource.OpenOfficeResourceLoader"
>
<service
name=
"com.sun.star.resource.OfficeResourceLoader"
/>
<singleton
name=
"com.sun.star.resource.OfficeResourceLoader"
/>
</implementation>
<implementation
name=
"org.libreoffice.extensions.resource.ResourceIndexAccess"
>
...
...
extensions/source/resource/resourceservices.cxx
Dosyayı görüntüle @
a94390d2
...
...
@@ -23,6 +23,7 @@ const sdecl::ServiceDecl ResourceIndexAccessDecl(
"org.libreoffice.extensions.resource.ResourceIndexAccess"
,
"org.libreoffice.resource.ResourceIndexAccess"
);
//TOOD: this is a singleton, not a service:
const
sdecl
::
ServiceDecl
OpenOfficeResourceLoaderDecl
(
OpenOfficeResourceLoaderServiceImpl
,
"com.sun.star.comp.resource.OpenOfficeResourceLoader"
,
...
...
framework/source/services/ContextChangeEventMultiplexer.cxx
Dosyayı görüntüle @
a94390d2
...
...
@@ -27,9 +27,6 @@ using namespace cssu;
namespace
framework
{
#define IMPLEMENTATION_NAME "org.apache.openoffice.comp.framework.ContextChangeEventMultiplexer"
#define SERVICE_NAME "com.sun.star.ui.ContextChangeEventMultiplexer"
#define SINGLETON_NAME "org.apache.openoffice.comp.framework.ContextChangeEventMultiplexerSigleton"
ContextChangeEventMultiplexer
::
ContextChangeEventMultiplexer
(
const
cssu
::
Reference
<
cssu
::
XComponentContext
>&
rxContext
)
...
...
@@ -347,15 +344,9 @@ OUString SAL_CALL ContextChangeEventMultiplexer::impl_getStaticImplementationNam
cssu
::
Sequence
<
OUString
>
SAL_CALL
ContextChangeEventMultiplexer
::
static_GetSupportedServiceNames
(
void
)
{
cssu
::
Sequence
<
OUString
>
aServiceNames
(
2
);
aServiceNames
[
0
]
=
SERVICE_NAME
;
aServiceNames
[
1
]
=
SINGLETON_NAME
;
return
aServiceNames
;
return
css
::
uno
::
Sequence
<
OUString
>
();
}
cssu
::
Reference
<
cssu
::
XInterface
>
ContextChangeEventMultiplexer
::
impl_createFactory
(
const
cssu
::
Reference
<
cssl
::
XMultiServiceFactory
>&
rxServiceManager
)
{
...
...
framework/util/fwk.component
Dosyayı görüntüle @
a94390d2
...
...
@@ -38,7 +38,6 @@
<service
name=
"com.sun.star.ui.DocumentAcceleratorConfiguration"
/>
</implementation>
<implementation
name=
"org.apache.openoffice.comp.framework.ContextChangeEventMultiplexer"
>
<service
name=
"com.sun.star.ui.ContextChangeEventMultiplexer"
/>
<singleton
name=
"com.sun.star.ui.ContextChangeEventMultiplexer"
/>
</implementation>
<implementation
name=
"com.sun.star.comp.framework.Frame"
>
...
...
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