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
048e64e7
Kaydet (Commit)
048e64e7
authored
Mar 28, 2013
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Drop redundant typedef
Change-Id: I13f1858babb1fb2b4120bcbf0e2e04a2a1f4bf88
üst
38e5096b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
8 deletions
+6
-8
proxyaggregation.hxx
comphelper/inc/comphelper/proxyaggregation.hxx
+1
-3
accessiblewrapper.cxx
comphelper/source/misc/accessiblewrapper.cxx
+1
-1
proxyaggregation.cxx
comphelper/source/misc/proxyaggregation.cxx
+4
-4
No files found.
comphelper/inc/comphelper/proxyaggregation.hxx
Dosyayı görüntüle @
048e64e7
...
...
@@ -175,10 +175,8 @@ namespace comphelper
//=========================================================================
//= OComponentProxyAggregation
//=========================================================================
typedef
::
cppu
::
WeakComponentImplHelperBase
OComponentProxyAggregation_CBase
;
class
COMPHELPER_DLLPUBLIC
OComponentProxyAggregation
:
public
OBaseMutex
,
public
OComponentProxyAggregation_C
Base
,
public
cppu
::
WeakComponentImplHelper
Base
,
public
OComponentProxyAggregationHelper
{
protected
:
...
...
comphelper/source/misc/accessiblewrapper.cxx
Dosyayı görüntüle @
048e64e7
...
...
@@ -663,7 +663,7 @@ namespace comphelper
void
SAL_CALL
OAccessibleContextWrapper
::
dispose
()
throw
(
RuntimeException
)
{
// simply disambiguate
OComponentProxyAggregation_C
Base
::
dispose
();
WeakComponentImplHelper
Base
::
dispose
();
}
//.............................................................................
...
...
comphelper/source/misc/proxyaggregation.cxx
Dosyayı görüntüle @
048e64e7
...
...
@@ -191,7 +191,7 @@ namespace comphelper
//-------------------------------------------------------------------------
OComponentProxyAggregation
::
OComponentProxyAggregation
(
const
Reference
<
XComponentContext
>&
_rxContext
,
const
Reference
<
XComponent
>&
_rxComponent
)
:
OComponentProxyAggregation_C
Base
(
m_aMutex
)
:
WeakComponentImplHelper
Base
(
m_aMutex
)
,
OComponentProxyAggregationHelper
(
_rxContext
,
rBHelper
)
{
OSL_ENSURE
(
_rxComponent
.
is
(),
"OComponentProxyAggregation::OComponentProxyAggregation: accessible is no XComponent!"
);
...
...
@@ -206,7 +206,7 @@ namespace comphelper
}
//-------------------------------------------------------------------------
IMPLEMENT_FORWARD_XINTERFACE2
(
OComponentProxyAggregation
,
OComponentProxyAggregation_C
Base
,
OComponentProxyAggregationHelper
)
IMPLEMENT_FORWARD_XINTERFACE2
(
OComponentProxyAggregation
,
WeakComponentImplHelper
Base
,
OComponentProxyAggregationHelper
)
//-------------------------------------------------------------------------
IMPLEMENT_GET_IMPLEMENTATION_ID
(
OComponentProxyAggregation
)
...
...
@@ -216,7 +216,7 @@ namespace comphelper
{
Sequence
<
Type
>
aTypes
(
OComponentProxyAggregationHelper
::
getTypes
()
);
// append XComponent, coming from
OComponentProxyAggregation_C
Base
// append XComponent, coming from
WeakComponentImplHelper
Base
sal_Int32
nLen
=
aTypes
.
getLength
();
aTypes
.
realloc
(
nLen
+
1
);
aTypes
[
nLen
]
=
::
getCppuType
(
static_cast
<
Reference
<
XComponent
>*
>
(
NULL
)
);
...
...
@@ -256,7 +256,7 @@ namespace comphelper
void
SAL_CALL
OComponentProxyAggregation
::
dispose
()
throw
(
RuntimeException
)
{
// simply disambiguate
OComponentProxyAggregation_C
Base
::
dispose
();
WeakComponentImplHelper
Base
::
dispose
();
}
...
...
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