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
9a25d125
Kaydet (Commit)
9a25d125
authored
Eyl 30, 2014
tarafından
Matúš Kukan
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
This was OString already; use it that way
Change-Id: Ia2268ce8a1e2111adb609c515e5bfa824afa66ce
üst
86de557e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
fastserializer.cxx
sax/source/tools/fastserializer.cxx
+4
-5
No files found.
sax/source/tools/fastserializer.cxx
Dosyayı görüntüle @
9a25d125
...
...
@@ -225,7 +225,7 @@ namespace sax_fastparser {
void
FastSaxSerializer
::
writeFastAttributeList
(
const
Reference
<
XFastAttributeList
>&
Attribs
)
{
#ifdef DBG_UTIL
::
std
::
set
<
O
U
String
>
DebugAttributes
;
::
std
::
set
<
OString
>
DebugAttributes
;
#endif
Sequence
<
Attribute
>
aAttrSeq
=
Attribs
->
getUnknownAttributes
();
const
Attribute
*
pAttr
=
aAttrSeq
.
getConstArray
();
...
...
@@ -258,10 +258,9 @@ namespace sax_fastparser {
#ifdef DBG_UTIL
// Well-formedness constraint: Unique Att Spec
OUString
const
name
(
OStringToOUString
(
getId
(
nToken
),
RTL_TEXTENCODING_UTF8
));
assert
(
DebugAttributes
.
find
(
name
)
==
DebugAttributes
.
end
());
DebugAttributes
.
insert
(
name
);
OString
const
nameId
(
getId
(
nToken
));
assert
(
DebugAttributes
.
find
(
nameId
)
==
DebugAttributes
.
end
());
DebugAttributes
.
insert
(
nameId
);
#endif
writeBytes
(
toUnoSequence
(
maEqualSignAndQuote
));
...
...
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