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
70946992
Kaydet (Commit)
70946992
authored
Agu 28, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fix some *_component_getFactory function types
Change-Id: I912f9d1454c049419e9ead6f0ff8d7fa7d8cd6c5
üst
b450d322
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
dp_gui_service.cxx
desktop/source/deployment/gui/dp_gui_service.cxx
+3
-3
mctfentry.cxx
dtrans/source/cnttype/mctfentry.cxx
+1
-1
bibload.cxx
extensions/source/bibliography/bibload.cxx
+2
-2
dlgprov.cxx
scripting/source/dlgprov/dlgprov.cxx
+2
-2
stringresource.cxx
scripting/source/stringresource/stringresource.cxx
+2
-2
No files found.
desktop/source/deployment/gui/dp_gui_service.cxx
Dosyayı görüntüle @
70946992
...
...
@@ -331,11 +331,11 @@ extern "C" {
SAL_DLLPUBLIC_EXPORT
void
*
SAL_CALL
deploymentgui_component_getFactory
(
sal_Char
const
*
pImplName
,
lang
::
XMultiServiceFactory
*
pServiceManager
,
registry
::
XRegistryKey
*
pRegistryKey
)
void
*
pServiceManager
,
void
*
pRegistryKey
)
{
return
component_getFactoryHelper
(
pImplName
,
pServiceManager
,
pRegistryKey
,
dp_gui
::
serviceDecl
,
dp_gui
::
licenseDecl
,
dp_gui
::
updateDecl
);
pImplName
,
static_cast
<
css
::
lang
::
XMultiServiceFactory
*>
(
pServiceManager
),
static_cast
<
css
::
registry
::
XRegistryKey
*>
(
pRegistryKey
)
,
dp_gui
::
serviceDecl
,
dp_gui
::
licenseDecl
,
dp_gui
::
updateDecl
);
}
}
// extern "C"
...
...
dtrans/source/cnttype/mctfentry.cxx
Dosyayı görüntüle @
70946992
...
...
@@ -61,7 +61,7 @@ extern "C"
// component_getFactory
// returns a factory to create XFilePicker-Services
SAL_DLLPUBLIC_EXPORT
void
*
SAL_CALL
mcnttype_component_getFactory
(
const
sal_Char
*
pImplName
,
uno_Interface
*
pSrvManager
,
uno_Interface
*
/*pRegistryKey*/
)
SAL_DLLPUBLIC_EXPORT
void
*
SAL_CALL
mcnttype_component_getFactory
(
const
sal_Char
*
pImplName
,
void
*
pSrvManager
,
void
*
/*pRegistryKey*/
)
{
void
*
pRet
=
0
;
...
...
extensions/source/bibliography/bibload.cxx
Dosyayı görüntüle @
70946992
...
...
@@ -193,7 +193,7 @@ Sequence< OUString > BibliographyLoader::getSupportedServiceNames_Static(void) t
extern
"C"
{
SAL_DLLPUBLIC_EXPORT
void
*
SAL_CALL
bib_component_getFactory
(
const
sal_Char
*
pImplName
,
XMultiServiceFactory
*
pServiceManager
,
void
*
/*pRegistryKey*/
)
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
/*pRegistryKey*/
)
{
void
*
pRet
=
0
;
if
(
BibliographyLoader
::
getImplementationName_Static
().
equalsAscii
(
pImplName
)
)
...
...
@@ -201,7 +201,7 @@ extern "C"
// create the factory
Reference
<
XSingleServiceFactory
>
xFactory
=
cppu
::
createSingleFactory
(
pServiceManager
,
static_cast
<
css
::
lang
::
XMultiServiceFactory
*>
(
pServiceManager
)
,
BibliographyLoader
::
getImplementationName_Static
(),
BibliographyLoader_CreateInstance
,
BibliographyLoader
::
getSupportedServiceNames_Static
()
);
...
...
scripting/source/dlgprov/dlgprov.cxx
Dosyayı görüntüle @
70946992
...
...
@@ -818,8 +818,8 @@ static OUString aResourceResolverPropName("ResourceResolver");
extern
"C"
{
SAL_DLLPUBLIC_EXPORT
void
*
SAL_CALL
dlgprov_component_getFactory
(
const
sal_Char
*
pImplName
,
lang
::
XMultiServiceFactory
*
pServiceManager
,
registry
::
XRegistryKey
*
pRegistryKey
)
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
)
{
return
::
cppu
::
component_getFactoryHelper
(
pImplName
,
pServiceManager
,
pRegistryKey
,
::
dlgprov
::
s_component_entries
);
...
...
scripting/source/stringresource/stringresource.cxx
Dosyayı görüntüle @
70946992
...
...
@@ -2988,8 +2988,8 @@ static const struct ::cppu::ImplementationEntry s_component_entries [] =
extern
"C"
{
SAL_DLLPUBLIC_EXPORT
void
*
SAL_CALL
stringresource_component_getFactory
(
const
sal_Char
*
pImplName
,
lang
::
XMultiServiceFactory
*
pServiceManager
,
registry
::
XRegistryKey
*
pRegistryKey
)
const
sal_Char
*
pImplName
,
void
*
pServiceManager
,
void
*
pRegistryKey
)
{
return
::
cppu
::
component_getFactoryHelper
(
pImplName
,
pServiceManager
,
pRegistryKey
,
::
stringresource
::
s_component_entries
);
...
...
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