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
150420cb
Kaydet (Commit)
150420cb
authored
Şub 27, 2014
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
DOCX export: fix style's next element order
Change-Id: I03e91a448794efc2b91f3a6fb6c29dda3403ce9b
üst
a4bdeeba
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
7 deletions
+16
-7
zoom.docx
sw/qa/extras/ooxmlexport/data/zoom.docx
+0
-0
ooxmlexport.cxx
sw/qa/extras/ooxmlexport/ooxmlexport.cxx
+9
-0
docxattributeoutput.cxx
sw/source/filter/ww8/docxattributeoutput.cxx
+7
-7
No files found.
sw/qa/extras/ooxmlexport/data/zoom.docx
Dosyayı görüntüle @
150420cb
No preview for this file type
sw/qa/extras/ooxmlexport/ooxmlexport.cxx
Dosyayı görüntüle @
150420cb
...
...
@@ -94,6 +94,15 @@ DECLARE_OOXMLEXPORT_TEST(testZoom, "zoom.docx")
sal_Int16
nValue
=
0
;
xPropertySet
->
getPropertyValue
(
"ZoomValue"
)
>>=
nValue
;
CPPUNIT_ASSERT_EQUAL
(
sal_Int16
(
42
),
nValue
);
// Validation test: order of elements were wrong.
xmlDocPtr
pXmlDoc
=
parseExport
(
"word/styles.xml"
);
if
(
!
pXmlDoc
)
return
;
// Order was: rsid, next.
int
nNext
=
getXPathPosition
(
pXmlDoc
,
"/w:styles/w:style[3]"
,
"next"
);
int
nRsid
=
getXPathPosition
(
pXmlDoc
,
"/w:styles/w:style[3]"
,
"rsid"
);
CPPUNIT_ASSERT
(
nNext
<
nRsid
);
}
DECLARE_OOXMLEXPORT_TEST
(
defaultTabStopNotInStyles
,
"empty.odt"
)
...
...
sw/source/filter/ww8/docxattributeoutput.cxx
Dosyayı görüntüle @
150420cb
...
...
@@ -3977,6 +3977,13 @@ void DocxAttributeOutput::StartStyle( const OUString& rName, StyleType eType,
FSEND );
}
if ( nNext != nId && eType != STYLE_TYPE_LIST)
{
m_pSerializer->singleElementNS( XML_w, XML_next,
FSNS( XML_w, XML_val ), m_rExport.pStyles->GetStyleId(nNext).getStr(),
FSEND );
}
if (!aLink.isEmpty())
m_pSerializer->singleElementNS(XML_w, XML_link,
FSNS(XML_w, XML_val), OUStringToOString(aLink, RTL_TEXTENCODING_UTF8).getStr(),
...
...
@@ -3999,13 +4006,6 @@ void DocxAttributeOutput::StartStyle( const OUString& rName, StyleType eType,
FSNS(XML_w, XML_val), OUStringToOString(aRsid, RTL_TEXTENCODING_UTF8).getStr(),
FSEND);
if
(
nNext
!=
nId
&&
eType
!=
STYLE_TYPE_LIST
)
{
m_pSerializer
->
singleElementNS
(
XML_w
,
XML_next
,
FSNS
(
XML_w
,
XML_val
),
m_rExport
.
pStyles
->
GetStyleId
(
nNext
).
getStr
(),
FSEND
);
}
if ( bAutoUpdate )
m_pSerializer->singleElementNS( XML_w, XML_autoRedefine, FSEND );
}
...
...
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