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
83ebe2ca
Kaydet (Commit)
83ebe2ca
authored
Mar 26, 2015
tarafından
Miklos Vajna
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
DOCX export: remove no longer needed AddToAttrList() variants
Change-Id: Ide671e1ec9d80069869b14fb3c94acbd287a3427
üst
c1fed2a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
24 deletions
+0
-24
docxattributeoutput.cxx
sw/source/filter/ww8/docxattributeoutput.cxx
+0
-22
docxattributeoutput.hxx
sw/source/filter/ww8/docxattributeoutput.hxx
+0
-2
No files found.
sw/source/filter/ww8/docxattributeoutput.cxx
Dosyayı görüntüle @
83ebe2ca
...
...
@@ -8381,28 +8381,6 @@ void DocxAttributeOutput::BulletDefinition(int nId, const Graphic& rGraphic, Siz
m_pSerializer->endElementNS(XML_w, XML_numPicBullet);
}
void DocxAttributeOutput::AddToAttrList( ::sax_fastparser::FastAttributeList* &pAttrList, sal_Int32 nAttrName, const sal_Char* sAttrValue )
{
AddToAttrList( pAttrList, 1, nAttrName, sAttrValue );
}
void DocxAttributeOutput::AddToAttrList( ::sax_fastparser::FastAttributeList* &pAttrList, sal_Int32 nAttrs, ... )
{
if( !pAttrList )
pAttrList = m_pSerializer->createAttrList();
va_list args;
va_start( args, nAttrs );
for( sal_Int32 i = 0; i<nAttrs; i++)
{
sal_Int32 nName = va_arg( args, sal_Int32 );
const char* pValue = va_arg( args, const char* );
if( pValue )
pAttrList->add( nName, pValue );
}
va_end( args );
}
void DocxAttributeOutput::AddToAttrList( std::unique_ptr<sax_fastparser::FastAttributeList>& pAttrList, sal_Int32 nAttrName, const sal_Char* sAttrValue )
{
AddToAttrList( pAttrList, 1, nAttrName, sAttrValue );
...
...
sw/source/filter/ww8/docxattributeoutput.hxx
Dosyayı görüntüle @
83ebe2ca
...
...
@@ -717,8 +717,6 @@ private:
void
CmdField_Impl
(
FieldInfos
&
rInfos
);
void
EndField_Impl
(
FieldInfos
&
rInfos
);
void
AddToAttrList
(
::
sax_fastparser
::
FastAttributeList
*
&
pAttrList
,
sal_Int32
nAttrName
,
const
sal_Char
*
sAttrValue
);
void
AddToAttrList
(
::
sax_fastparser
::
FastAttributeList
*
&
pAttrList
,
sal_Int32
nArgs
,
...
);
void
AddToAttrList
(
std
::
unique_ptr
<
sax_fastparser
::
FastAttributeList
>&
pAttrList
,
sal_Int32
nAttrName
,
const
sal_Char
*
sAttrValue
);
void
AddToAttrList
(
std
::
unique_ptr
<
sax_fastparser
::
FastAttributeList
>&
pAttrList
,
sal_Int32
nArgs
,
...
);
...
...
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