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
c13f5bc2
Kaydet (Commit)
c13f5bc2
authored
Kas 26, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Use comphelper::containerToSequence()
Change-Id: I8c8277d47c2ab0e2bf5fad68bbfc45dea71d6c34
üst
ce5024ad
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
4 deletions
+3
-4
OOXMLDocumentImpl.cxx
writerfilter/source/ooxml/OOXMLDocumentImpl.cxx
+3
-4
No files found.
writerfilter/source/ooxml/OOXMLDocumentImpl.cxx
Dosyayı görüntüle @
c13f5bc2
...
...
@@ -556,7 +556,7 @@ void OOXMLDocumentImpl::resolveCustomXmlStream(Stream & rStream)
sal_Int32
counter
=
0
;
uno
::
Sequence
<
uno
::
Sequence
<
beans
::
StringPair
>
>
aSeqs
=
xRelationshipAccess
->
getAllRelationships
();
std
::
vector
<
uno
::
Reference
<
xml
::
dom
::
XDocument
>
>
aCustomXmlDomList
;
uno
::
Sequence
<
uno
::
Reference
<
xml
::
dom
::
XDocument
>
>
xCustomXmlDomPropsListTemp
(
aSeqs
.
getLength
())
;
std
::
vector
<
uno
::
Reference
<
xml
::
dom
::
XDocument
>
>
aCustomXmlDomPropsList
;
for
(
sal_Int32
j
=
0
;
j
<
aSeqs
.
getLength
();
j
++
)
{
uno
::
Sequence
<
beans
::
StringPair
>
aSeq
=
aSeqs
[
j
];
...
...
@@ -583,7 +583,7 @@ void OOXMLDocumentImpl::resolveCustomXmlStream(Stream & rStream)
if
(
mxCustomXmlProsDom
.
is
()
&&
customXmlTemp
.
is
())
{
aCustomXmlDomList
.
push_back
(
customXmlTemp
);
xCustomXmlDomPropsListTemp
[
counter
]
=
mxCustomXmlProsDom
;
aCustomXmlDomPropsList
.
push_back
(
mxCustomXmlProsDom
)
;
counter
++
;
resolveFastSubStream
(
rStream
,
OOXMLStream
::
CUSTOMXML
);
}
...
...
@@ -591,9 +591,8 @@ void OOXMLDocumentImpl::resolveCustomXmlStream(Stream & rStream)
}
}
xCustomXmlDomPropsListTemp
.
realloc
(
counter
);
mxCustomXmlDomList
=
comphelper
::
containerToSequence
(
aCustomXmlDomList
);
mxCustomXmlDomPropsList
=
xCustomXmlDomPropsListTemp
;
mxCustomXmlDomPropsList
=
comphelper
::
containerToSequence
(
aCustomXmlDomPropsList
)
;
}
}
...
...
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