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
c7f1ce59
Kaydet (Commit)
c7f1ce59
authored
Mar 10, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
extensions: simplify deprecated XTypeProvider.getImplementationId
Change-Id: I234d36bc7ef9e8e27087067f6e43d7e522e52d4d
üst
c63ba20f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
30 deletions
+6
-30
unodialogabp.cxx
extensions/source/abpilot/unodialogabp.cxx
+1
-11
unoautopilot.inl
extensions/source/dbpilots/unoautopilot.inl
+1
-2
servprov.cxx
extensions/source/ole/servprov.cxx
+1
-11
MasterDetailLinkDialog.cxx
extensions/source/propctrlr/MasterDetailLinkDialog.cxx
+1
-2
controlfontdialog.cxx
extensions/source/propctrlr/controlfontdialog.cxx
+1
-2
pcrunodialogs.cxx
extensions/source/propctrlr/pcrunodialogs.cxx
+1
-2
No files found.
extensions/source/abpilot/unodialogabp.cxx
Dosyayı görüntüle @
c7f1ce59
...
@@ -83,17 +83,7 @@ namespace abp
...
@@ -83,17 +83,7 @@ namespace abp
Sequence
<
sal_Int8
>
SAL_CALL
OABSPilotUno
::
getImplementationId
(
)
throw
(
RuntimeException
,
std
::
exception
)
Sequence
<
sal_Int8
>
SAL_CALL
OABSPilotUno
::
getImplementationId
(
)
throw
(
RuntimeException
,
std
::
exception
)
{
{
static
::
cppu
::
OImplementationId
*
s_pId
;
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
if
(
!
s_pId
)
{
::
osl
::
MutexGuard
aGuard
(
::
osl
::
Mutex
::
getGlobalMutex
()
);
if
(
!
s_pId
)
{
static
::
cppu
::
OImplementationId
s_aId
;
s_pId
=
&
s_aId
;
}
}
return
s_pId
->
getImplementationId
();
}
}
...
...
extensions/source/dbpilots/unoautopilot.inl
Dosyayı görüntüle @
c7f1ce59
...
@@ -32,8 +32,7 @@ OUnoAutoPilot<TYPE, SERVICEINFO>::OUnoAutoPilot(const ::com::sun::star::uno::Ref
...
@@ -32,8 +32,7 @@ OUnoAutoPilot<TYPE, SERVICEINFO>::OUnoAutoPilot(const ::com::sun::star::uno::Ref
template <class TYPE, class SERVICEINFO>
template <class TYPE, class SERVICEINFO>
::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL OUnoAutoPilot<TYPE, SERVICEINFO>::getImplementationId( ) throw(::com::sun::star::uno::RuntimeException, std::exception)
::com::sun::star::uno::Sequence<sal_Int8> SAL_CALL OUnoAutoPilot<TYPE, SERVICEINFO>::getImplementationId( ) throw(::com::sun::star::uno::RuntimeException, std::exception)
{
{
static ::cppu::OImplementationId aId;
return css::uno::Sequence<sal_Int8>();
return aId.getImplementationId();
}
}
...
...
extensions/source/ole/servprov.cxx
Dosyayı görüntüle @
c7f1ce59
...
@@ -653,17 +653,7 @@ Sequence< Type > SAL_CALL OleServer_Impl::getTypes( ) throw(RuntimeException)
...
@@ -653,17 +653,7 @@ Sequence< Type > SAL_CALL OleServer_Impl::getTypes( ) throw(RuntimeException)
}
}
Sequence
<
sal_Int8
>
SAL_CALL
OleServer_Impl
::
getImplementationId
()
throw
(
RuntimeException
)
Sequence
<
sal_Int8
>
SAL_CALL
OleServer_Impl
::
getImplementationId
()
throw
(
RuntimeException
)
{
{
static
OImplementationId
*
pId
=
0
;
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
if
(
!
pId
)
{
MutexGuard
guard
(
Mutex
::
getGlobalMutex
()
);
if
(
!
pId
)
{
static
OImplementationId
id
(
false
);
pId
=
&
id
;
}
}
return
(
*
pId
).
getImplementationId
();
}
}
...
...
extensions/source/propctrlr/MasterDetailLinkDialog.cxx
Dosyayı görüntüle @
c7f1ce59
...
@@ -45,8 +45,7 @@ namespace pcr
...
@@ -45,8 +45,7 @@ namespace pcr
Sequence
<
sal_Int8
>
SAL_CALL
MasterDetailLinkDialog
::
getImplementationId
(
)
throw
(
RuntimeException
,
std
::
exception
)
Sequence
<
sal_Int8
>
SAL_CALL
MasterDetailLinkDialog
::
getImplementationId
(
)
throw
(
RuntimeException
,
std
::
exception
)
{
{
static
::
cppu
::
OImplementationId
aId
;
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
return
aId
.
getImplementationId
();
}
}
...
...
extensions/source/propctrlr/controlfontdialog.cxx
Dosyayı görüntüle @
c7f1ce59
...
@@ -67,8 +67,7 @@ namespace pcr
...
@@ -67,8 +67,7 @@ namespace pcr
Sequence
<
sal_Int8
>
SAL_CALL
OControlFontDialog
::
getImplementationId
(
)
throw
(
RuntimeException
,
std
::
exception
)
Sequence
<
sal_Int8
>
SAL_CALL
OControlFontDialog
::
getImplementationId
(
)
throw
(
RuntimeException
,
std
::
exception
)
{
{
static
::
cppu
::
OImplementationId
aId
;
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
return
aId
.
getImplementationId
();
}
}
...
...
extensions/source/propctrlr/pcrunodialogs.cxx
Dosyayı görüntüle @
c7f1ce59
...
@@ -71,8 +71,7 @@ namespace pcr
...
@@ -71,8 +71,7 @@ namespace pcr
Sequence
<
sal_Int8
>
SAL_CALL
OTabOrderDialog
::
getImplementationId
(
)
throw
(
RuntimeException
,
std
::
exception
)
Sequence
<
sal_Int8
>
SAL_CALL
OTabOrderDialog
::
getImplementationId
(
)
throw
(
RuntimeException
,
std
::
exception
)
{
{
static
::
cppu
::
OImplementationId
aId
;
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
return
aId
.
getImplementationId
();
}
}
...
...
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