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
a3858b40
Kaydet (Commit)
a3858b40
authored
Mar 10, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
ucb: simplify deprecated XTypeProvider.getImplementationId
Change-Id: Ifece71871e3af4021f885c5dac1b6c406d2962b2
üst
2b0cfed3
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
8 additions
and
58 deletions
+8
-58
filid.cxx
ucb/source/ucp/file/filid.cxx
+1
-11
ftpcontent.cxx
ucb/source/ucp/ftp/ftpcontent.cxx
+1
-11
ftpcontentidentifier.cxx
ucb/source/ucp/ftp/ftpcontentidentifier.cxx
+1
-11
ftpcontentprovider.cxx
ucb/source/ucp/ftp/ftpcontentprovider.cxx
+1
-11
tdoc_passwordrequest.cxx
ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx
+1
-11
tdoc_stgelems.cxx
ucb/source/ucp/tdoc/tdoc_stgelems.cxx
+3
-3
No files found.
ucb/source/ucp/file/filid.cxx
Dosyayı görüntüle @
a3858b40
...
...
@@ -84,17 +84,7 @@ uno::Sequence< sal_Int8 > SAL_CALL
FileContentIdentifier
::
getImplementationId
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
static
cppu
::
OImplementationId
*
pId
=
NULL
;
if
(
!
pId
)
{
osl
::
Guard
<
osl
::
Mutex
>
aGuard
(
osl
::
Mutex
::
getGlobalMutex
()
);
if
(
!
pId
)
{
static
cppu
::
OImplementationId
id
(
false
);
pId
=
&
id
;
}
}
return
(
*
pId
).
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
...
...
ucb/source/ucp/ftp/ftpcontent.cxx
Dosyayı görüntüle @
a3858b40
...
...
@@ -145,17 +145,7 @@ css::uno::Sequence< sal_Int8 > SAL_CALL FTPContent::getImplementationId()
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
static
cppu
::
OImplementationId
*
pId
=
NULL
;
if
(
!
pId
)
{
osl
::
Guard
<
osl
::
Mutex
>
aGuard
(
osl
::
Mutex
::
getGlobalMutex
()
);
if
(
!
pId
)
{
static
cppu
::
OImplementationId
id
(
false
);
pId
=
&
id
;
}
}
return
(
*
pId
).
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
css
::
uno
::
Sequence
<
css
::
uno
::
Type
>
SAL_CALL
FTPContent
::
getTypes
()
...
...
ucb/source/ucp/ftp/ftpcontentidentifier.cxx
Dosyayı görüntüle @
a3858b40
...
...
@@ -76,17 +76,7 @@ Sequence<sal_Int8> SAL_CALL
FTPContentIdentifier
::
getImplementationId
()
throw
(
RuntimeException
,
std
::
exception
)
{
static
cppu
::
OImplementationId
*
pId
=
NULL
;
if
(
!
pId
)
{
osl
::
Guard
<
osl
::
Mutex
>
aGuard
(
osl
::
Mutex
::
getGlobalMutex
()
);
if
(
!
pId
)
{
static
cppu
::
OImplementationId
id
(
false
);
pId
=
&
id
;
}
}
return
(
*
pId
).
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
...
...
ucb/source/ucp/ftp/ftpcontentprovider.cxx
Dosyayı görüntüle @
a3858b40
...
...
@@ -84,17 +84,7 @@ css::uno::Sequence< sal_Int8 > SAL_CALL FTPContentProvider::getImplementationId(
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
static
cppu
::
OImplementationId
*
pId
=
NULL
;
if
(
!
pId
)
{
osl
::
Guard
<
osl
::
Mutex
>
aGuard
(
osl
::
Mutex
::
getGlobalMutex
()
);
if
(
!
pId
)
{
static
cppu
::
OImplementationId
id
(
false
);
pId
=
&
id
;
}
}
return
(
*
pId
).
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
css
::
uno
::
Sequence
<
css
::
uno
::
Type
>
SAL_CALL
FTPContentProvider
::
getTypes
()
...
...
ucb/source/ucp/tdoc/tdoc_passwordrequest.cxx
Dosyayı görüntüle @
a3858b40
...
...
@@ -127,17 +127,7 @@ uno::Sequence< sal_Int8 > SAL_CALL
InteractionSupplyPassword
::
getImplementationId
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
static
cppu
::
OImplementationId
*
pId
=
0
;
if
(
!
pId
)
{
osl
::
Guard
<
osl
::
Mutex
>
aGuard
(
osl
::
Mutex
::
getGlobalMutex
()
);
if
(
!
pId
)
{
static
cppu
::
OImplementationId
id
(
false
);
pId
=
&
id
;
}
}
return
(
*
pId
).
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
...
...
ucb/source/ucp/tdoc/tdoc_stgelems.cxx
Dosyayı görüntüle @
a3858b40
...
...
@@ -207,7 +207,7 @@ uno::Sequence< uno::Type > SAL_CALL Storage::getTypes()
uno
::
Sequence
<
sal_Int8
>
SAL_CALL
Storage
::
getImplementationId
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
return
m_xWrappedTypeProv
->
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
...
...
@@ -670,7 +670,7 @@ uno::Sequence< uno::Type > SAL_CALL OutputStream::getTypes()
uno
::
Sequence
<
sal_Int8
>
SAL_CALL
OutputStream
::
getImplementationId
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
return
m_xWrappedTypeProv
->
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
...
...
@@ -865,7 +865,7 @@ uno::Sequence< uno::Type > SAL_CALL Stream::getTypes()
uno
::
Sequence
<
sal_Int8
>
SAL_CALL
Stream
::
getImplementationId
()
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
return
m_xWrappedTypeProv
->
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
...
...
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