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
be6108a8
Kaydet (Commit)
be6108a8
authored
Kas 25, 2015
tarafından
Michael Meeks
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
sw: SwXTextTableCursor needs to take the SolarMutex in release.
Change-Id: I1fb5baabd869c4abe8ccf9eeae131efcc697bbee
üst
e63938ca
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
1 deletion
+23
-1
unotbl.cxx
sw/source/core/unocore/unotbl.cxx
+23
-1
No files found.
sw/source/core/unocore/unotbl.cxx
Dosyayı görüntüle @
be6108a8
...
...
@@ -795,6 +795,8 @@ void SAL_CALL SwXCell::acquire( ) throw()
void
SAL_CALL
SwXCell
::
release
(
)
throw
()
{
SolarMutexGuard
aGuard
;
SwXCellBaseClass
::
release
();
}
...
...
@@ -1430,7 +1432,27 @@ OUString SwXTextTableCursor::getImplementationName() throw( uno::RuntimeExceptio
sal_Bool
SwXTextTableCursor
::
supportsService
(
const
OUString
&
rServiceName
)
throw
(
uno
::
RuntimeException
,
std
::
exception
)
{
return
cppu
::
supportsService
(
this
,
rServiceName
);
}
IMPLEMENT_FORWARD_XINTERFACE2
(
SwXTextTableCursor
,
SwXTextTableCursor_Base
,
OTextCursorHelper
)
void
SwXTextTableCursor
::
acquire
()
throw
()
{
SwXTextTableCursor_Base
::
release
();
}
void
SwXTextTableCursor
::
release
()
throw
()
{
SolarMutexGuard
aGuard
;
SwXTextTableCursor_Base
::
release
();
}
css
::
uno
::
Any
SAL_CALL
SwXTextTableCursor
::
queryInterface
(
const
css
::
uno
::
Type
&
_rType
)
throw
(
css
::
uno
::
RuntimeException
,
std
::
exception
)
{
css
::
uno
::
Any
aReturn
=
SwXTextTableCursor_Base
::
queryInterface
(
_rType
);
if
(
!
aReturn
.
hasValue
()
)
aReturn
=
OTextCursorHelper
::
queryInterface
(
_rType
);
return
aReturn
;
}
const
SwPaM
*
SwXTextTableCursor
::
GetPaM
()
const
{
return
&
GetCursor
();
}
SwPaM
*
SwXTextTableCursor
::
GetPaM
()
{
return
&
GetCursor
();
}
const
SwDoc
*
SwXTextTableCursor
::
GetDoc
()
const
{
return
GetFrameFormat
()
->
GetDoc
();
}
...
...
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