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
5bce6e34
Kaydet (Commit)
5bce6e34
authored
Mar 10, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
stoc: simplify deprecated XTypeProvider.getImplementationId
Change-Id: I57eca2dcf316232c26c528015c4ba18ba3c4760d
üst
af277041
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
8 additions
and
78 deletions
+8
-78
crarray.cxx
stoc/source/corereflection/crarray.cxx
+1
-11
crcomp.cxx
stoc/source/corereflection/crcomp.cxx
+1
-11
crefl.cxx
stoc/source/corereflection/crefl.cxx
+1
-11
crenum.cxx
stoc/source/corereflection/crenum.cxx
+1
-11
criface.cxx
stoc/source/corereflection/criface.cxx
+2
-22
invocation.cxx
stoc/source/invocation/invocation.cxx
+1
-11
TestComponent.java
stoc/test/javavm/testcomponent/TestComponent.java
+1
-1
No files found.
stoc/source/corereflection/crarray.cxx
Dosyayı görüntüle @
5bce6e34
...
...
@@ -68,17 +68,7 @@ Sequence< Type > ArrayIdlClassImpl::getTypes()
Sequence
<
sal_Int8
>
ArrayIdlClassImpl
::
getImplementationId
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
static
OImplementationId
*
s_pId
=
0
;
if
(
!
s_pId
)
{
MutexGuard
aGuard
(
getMutexAccess
()
);
if
(
!
s_pId
)
{
static
OImplementationId
s_aId
;
s_pId
=
&
s_aId
;
}
}
return
s_pId
->
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
// XIdlArray
...
...
stoc/source/corereflection/crcomp.cxx
Dosyayı görüntüle @
5bce6e34
...
...
@@ -111,17 +111,7 @@ Sequence< Type > IdlCompFieldImpl::getTypes()
Sequence
<
sal_Int8
>
IdlCompFieldImpl
::
getImplementationId
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
static
OImplementationId
*
s_pId
=
0
;
if
(
!
s_pId
)
{
MutexGuard
aGuard
(
getMutexAccess
()
);
if
(
!
s_pId
)
{
static
OImplementationId
s_aId
;
s_pId
=
&
s_aId
;
}
}
return
s_pId
->
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
// XIdlMember
...
...
stoc/source/corereflection/crefl.cxx
Dosyayı görüntüle @
5bce6e34
...
...
@@ -119,17 +119,7 @@ Sequence< Type > IdlReflectionServiceImpl::getTypes()
Sequence
<
sal_Int8
>
IdlReflectionServiceImpl
::
getImplementationId
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
static
OImplementationId
*
s_pId
=
0
;
if
(
!
s_pId
)
{
MutexGuard
aGuard
(
_aComponentMutex
);
if
(
!
s_pId
)
{
static
OImplementationId
s_aId
;
s_pId
=
&
s_aId
;
}
}
return
s_pId
->
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
// XComponent
...
...
stoc/source/corereflection/crenum.cxx
Dosyayı görüntüle @
5bce6e34
...
...
@@ -109,17 +109,7 @@ Sequence< Type > IdlEnumFieldImpl::getTypes()
Sequence
<
sal_Int8
>
IdlEnumFieldImpl
::
getImplementationId
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
static
OImplementationId
*
s_pId
=
0
;
if
(
!
s_pId
)
{
MutexGuard
aGuard
(
getMutexAccess
()
);
if
(
!
s_pId
)
{
static
OImplementationId
s_aId
;
s_pId
=
&
s_aId
;
}
}
return
s_pId
->
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
// XIdlMember
...
...
stoc/source/corereflection/criface.cxx
Dosyayı görüntüle @
5bce6e34
...
...
@@ -123,17 +123,7 @@ Sequence< Type > IdlAttributeFieldImpl::getTypes()
Sequence
<
sal_Int8
>
IdlAttributeFieldImpl
::
getImplementationId
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
static
OImplementationId
*
s_pId
=
0
;
if
(
!
s_pId
)
{
MutexGuard
aGuard
(
getMutexAccess
()
);
if
(
!
s_pId
)
{
static
OImplementationId
s_aId
;
s_pId
=
&
s_aId
;
}
}
return
s_pId
->
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
// XIdlMember
...
...
@@ -427,17 +417,7 @@ Sequence< Type > IdlInterfaceMethodImpl::getTypes()
Sequence
<
sal_Int8
>
IdlInterfaceMethodImpl
::
getImplementationId
()
throw
(
::
com
::
sun
::
star
::
uno
::
RuntimeException
,
std
::
exception
)
{
static
OImplementationId
*
s_pId
=
0
;
if
(
!
s_pId
)
{
MutexGuard
aGuard
(
getMutexAccess
()
);
if
(
!
s_pId
)
{
static
OImplementationId
s_aId
;
s_pId
=
&
s_aId
;
}
}
return
s_pId
->
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
// XIdlMember
...
...
stoc/source/invocation/invocation.cxx
Dosyayı görüntüle @
5bce6e34
...
...
@@ -1050,17 +1050,7 @@ Sequence< Type > SAL_CALL Invocation_Impl::getTypes(void) throw( RuntimeExceptio
Sequence
<
sal_Int8
>
SAL_CALL
Invocation_Impl
::
getImplementationId
(
)
throw
(
RuntimeException
,
std
::
exception
)
{
static
OImplementationId
*
pId
=
0
;
if
(
!
pId
)
{
MutexGuard
guard
(
Mutex
::
getGlobalMutex
()
);
if
(
!
pId
)
{
static
OImplementationId
id
(
false
);
pId
=
&
id
;
}
}
return
pId
->
getImplementationId
();
return
css
::
uno
::
Sequence
<
sal_Int8
>
();
}
...
...
stoc/test/javavm/testcomponent/TestComponent.java
Dosyayı görüntüle @
5bce6e34
...
...
@@ -56,7 +56,7 @@ public class TestComponent implements XServiceInfo, XTypeProvider
// XTypeProvider
public
byte
[]
getImplementationId
(
)
{
return
TestComponent
.
class
.
getName
().
getBytes
()
;
return
new
byte
[
0
]
;
}
...
...
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