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
9beae152
Kaydet (Commit)
9beae152
authored
May 18, 2015
tarafından
Michael Stahl
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
xmloff: convert legacy assertions in SvXMLAutoStylePoolP_Impl::exportXML
Change-Id: I9f21ad73a8a30e0b9d0d515713cc95b303f973f7
üst
ce0ed76f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
12 deletions
+6
-12
impastpl.cxx
xmloff/source/style/impastpl.cxx
+6
-12
No files found.
xmloff/source/style/impastpl.cxx
Dosyayı görüntüle @
9beae152
...
...
@@ -484,7 +484,7 @@ void SvXMLAutoStylePoolP_Impl::GetRegisteredNames(
}
// copy the families + names into the sequence types
DBG_ASSERT
(
aFamilies
.
size
()
==
aNames
.
size
(),
"families != names"
);
assert
(
aFamilies
.
size
()
==
aNames
.
size
()
);
rFamilies
.
realloc
(
aFamilies
.
size
()
);
std
::
copy
(
aFamilies
.
begin
(),
aFamilies
.
end
(),
rFamilies
.
getArray
()
);
...
...
@@ -638,15 +638,10 @@ void SvXMLAutoStylePoolP_Impl::exportXML(
XMLAutoStylePoolProperties
*
pProperties
=
&
rParent
.
GetPropertiesList
()[
j
];
sal_uLong
nPos
=
pProperties
->
GetPos
();
DBG_ASSERT
(
nPos
<
nCount
,
"SvXMLAutoStylePool_Impl::exportXML: wrong position"
);
if
(
nPos
<
nCount
)
{
DBG_ASSERT
(
!
aExpStyles
[
nPos
].
mpProperties
,
"SvXMLAutoStylePool_Impl::exportXML: double position"
);
aExpStyles
[
nPos
].
mpProperties
=
pProperties
;
aExpStyles
[
nPos
].
mpParent
=
&
rParent
.
GetParent
();
}
assert
(
nPos
<
nCount
);
assert
(
!
aExpStyles
[
nPos
].
mpProperties
);
aExpStyles
[
nPos
].
mpProperties
=
pProperties
;
aExpStyles
[
nPos
].
mpParent
=
&
rParent
.
GetParent
();
}
}
...
...
@@ -674,8 +669,7 @@ void SvXMLAutoStylePoolP_Impl::exportXML(
for
(
size_t
i
=
0
;
i
<
nCount
;
i
++
)
{
DBG_ASSERT
(
aExpStyles
[
i
].
mpProperties
,
"SvXMLAutoStylePool_Impl::exportXML: empty position"
);
assert
(
aExpStyles
[
i
].
mpProperties
);
if
(
aExpStyles
[
i
].
mpProperties
)
{
...
...
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