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
466f5438
Kaydet (Commit)
466f5438
authored
May 18, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
xmloff: convert legacy asserts in SvXMLStylesContext_Impl
Change-Id: Ib9caf65f8cf1dc4ef9729f178fbe4ed032437be2
üst
227be0d8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
10 deletions
+8
-10
xmlstyle.cxx
xmloff/source/style/xmlstyle.cxx
+8
-10
No files found.
xmloff/source/style/xmlstyle.cxx
Dosyayı görüntüle @
466f5438
...
...
@@ -255,8 +255,8 @@ class SvXMLStylesContext_Impl
mutable
IndicesType
*
pIndices
;
bool
bAutomaticStyle
;
#if
def DBG_UTIL
mutable
sal_uInt32
nIndexCreated
;
#if
OSL_DEBUG_LEVEL > 0
mutable
sal_uInt32
m_
nIndexCreated
;
#endif
void
FlushIndex
()
{
delete
pIndices
;
pIndices
=
0
;
}
...
...
@@ -284,8 +284,8 @@ public:
SvXMLStylesContext_Impl
::
SvXMLStylesContext_Impl
(
bool
bAuto
)
:
pIndices
(
0
),
bAutomaticStyle
(
bAuto
)
#if
def DBG_UTIL
,
nIndexCreated
(
0
)
#if
OSL_DEBUG_LEVEL > 0
,
m_
nIndexCreated
(
0
)
#endif
{}
...
...
@@ -329,14 +329,12 @@ const SvXMLStyleContext *SvXMLStylesContext_Impl::FindStyleChildContext( sal_uIn
if
(
!
pIndices
&&
bCreateIndex
&&
!
aStyles
.
empty
()
)
{
#ifdef DBG_UTIL
DBG_ASSERT
(
0
==
nIndexCreated
,
"Performance warning: sdbcx::Index created multiple times"
);
#endif
SAL_WARN_IF
(
0
!=
m_nIndexCreated
,
"xmloff.style"
,
"Performance warning: sdbcx::Index created multiple times"
);
pIndices
=
new
IndicesType
(
aStyles
.
begin
(),
aStyles
.
end
());
SAL_WARN_IF
(
pIndices
->
size
()
!=
aStyles
.
size
(),
"xmloff"
,
"Here is a duplicate Style"
);
#if
def DBG_UTIL
++
nIndexCreated
;
#if
OSL_DEBUG_LEVEL > 0
++
m_
nIndexCreated
;
#endif
}
...
...
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