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
4b08e986
Kaydet (Commit)
4b08e986
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
Change-Id: Ibf3afcfb3f4dc400faa18a726ec47d58a230de65
üst
f7f48dd4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
xmlaustp.cxx
xmloff/source/style/xmlaustp.cxx
+4
-5
No files found.
xmloff/source/style/xmlaustp.cxx
Dosyayı görüntüle @
4b08e986
...
...
@@ -44,11 +44,11 @@ namespace
static
void
lcl_exportDataStyle
(
SvXMLExport
&
_rExport
,
const
rtl
::
Reference
<
XMLPropertySetMapper
>&
_rxMapper
,
const
XMLPropertyState
&
_rProperty
)
{
DBG_ASSERT
(
_rxMapper
.
is
(),
"xmloff::lcl_exportDataStyle: invalid property mapper!"
);
assert
(
_rxMapper
.
is
()
);
// obtain the data style name
OUString
sDataStyleName
;
_rProperty
.
maValue
>>=
sDataStyleName
;
DBG_ASSERT
(
!
sDataStyleName
.
isEmpty
(),
"xmloff::lcl_exportDataStyle: invalid property value for the data style name!"
);
assert
(
!
sDataStyleName
.
isEmpty
()
&&
"xmloff::lcl_exportDataStyle: invalid property value for the data style name!"
);
// add the attribute
_rExport
.
AddAttribute
(
...
...
@@ -88,7 +88,7 @@ void SvXMLAutoStylePoolP::exportStyleAttributes(
if
(
(
XML_STYLE_FAMILY_SD_GRAPHICS_ID
==
nFamily
)
||
(
XML_STYLE_FAMILY_SD_PRESENTATION_ID
==
nFamily
)
)
{
// it's a graphics style
rtl
::
Reference
<
XMLPropertySetMapper
>
aPropertyMapper
=
rPropExp
.
getPropertySetMapper
();
DBG_ASSERT
(
aPropertyMapper
.
is
(),
"SvXMLAutoStylePoolP::exportStyleAttributes: invalid property set mapper!"
);
assert
(
aPropertyMapper
.
is
()
);
bool
bFoundControlShapeDataStyle
=
false
;
bool
bFoundNumberingRulesName
=
false
;
...
...
@@ -322,8 +322,7 @@ void SvXMLAutoStylePoolP::RegisterNames(
uno
::
Sequence
<
sal_Int32
>&
aFamilies
,
uno
::
Sequence
<
OUString
>&
aNames
)
{
DBG_ASSERT
(
aFamilies
.
getLength
()
==
aNames
.
getLength
(),
"aFamilies != aNames"
);
assert
(
aFamilies
.
getLength
()
==
aNames
.
getLength
());
// iterate over sequence(s) and call RegisterName(..) for each pair
const
sal_Int32
*
pFamilies
=
aFamilies
.
getConstArray
();
...
...
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