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
cbe5a8c8
Kaydet (Commit)
cbe5a8c8
authored
Agu 13, 2012
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I213bc96fd6c9049c0dba0a527e827ae5d8f0ace3
üst
31c52706
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
10 deletions
+4
-10
eventattachermgr.cxx
comphelper/source/eventattachermgr/eventattachermgr.cxx
+0
-2
accessiblecontexthelper.cxx
comphelper/source/misc/accessiblecontexthelper.cxx
+4
-8
No files found.
comphelper/source/eventattachermgr/eventattachermgr.cxx
Dosyayı görüntüle @
cbe5a8c8
...
...
@@ -157,7 +157,6 @@ class AttacherAllListener_Impl : public WeakImplHelper1< XAllListener >
Reference
<
XEventAttacherManager
>
xManager
;
OUString
aScriptType
;
OUString
aScriptCode
;
sal_Int16
nVersion
;
void
convertToEventReturn
(
Any
&
rRet
,
const
Type
&
rRetType
)
throw
(
CannotConvertException
);
...
...
@@ -184,7 +183,6 @@ AttacherAllListener_Impl::AttacherAllListener_Impl
,
xManager
(
pManager_
)
,
aScriptType
(
rScriptType_
)
,
aScriptCode
(
rScriptCode_
)
,
nVersion
(
2
)
{
}
...
...
comphelper/source/misc/accessiblecontexthelper.cxx
Dosyayı görüntüle @
cbe5a8c8
...
...
@@ -43,10 +43,8 @@ namespace comphelper
class
OContextHelper_Impl
{
private
:
OAccessibleContextHelper
*
m_pAntiImpl
;
// the owning instance
IMutex
*
m_pExternalLock
;
// the optional additional external lock
::
cppu
::
OInterfaceContainerHelper
*
m_pEventListeners
;
WeakReference
<
XAccessible
>
m_aCreator
;
// the XAccessible which created our XAccessibleContext
AccessibleEventNotifier
::
TClientId
m_nClientId
;
...
...
@@ -64,10 +62,8 @@ namespace comphelper
{
m_nClientId
=
_nId
;
}
public
:
OContextHelper_Impl
(
OAccessibleContextHelper
*
_pAntiImpl
)
:
m_pAntiImpl
(
_pAntiImpl
)
,
m_pExternalLock
(
NULL
)
,
m_pEventListeners
(
NULL
)
OContextHelper_Impl
()
:
m_pExternalLock
(
NULL
)
,
m_nClientId
(
0
)
{
}
...
...
@@ -87,7 +83,7 @@ namespace comphelper
:
OAccessibleContextHelper_Base
(
GetMutex
()
)
,
m_pImpl
(
NULL
)
{
m_pImpl
=
new
OContextHelper_Impl
(
this
);
m_pImpl
=
new
OContextHelper_Impl
();
}
//---------------------------------------------------------------------
...
...
@@ -95,7 +91,7 @@ namespace comphelper
:
OAccessibleContextHelper_Base
(
GetMutex
()
)
,
m_pImpl
(
NULL
)
{
m_pImpl
=
new
OContextHelper_Impl
(
this
);
m_pImpl
=
new
OContextHelper_Impl
();
m_pImpl
->
setExternalLock
(
_pExternalLock
);
}
...
...
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