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
a11990f8
Kaydet (Commit)
a11990f8
authored
Eyl 16, 2013
tarafından
Noel Grandin
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
convert sw/source/core/inc/SwXMLBlockExport.hxx from String to OUString
Change-Id: I157e560482af5d917fbd6878dd679993f1da4fca
üst
5b83b465
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
5 deletions
+4
-5
SwXMLBlockExport.hxx
sw/source/core/inc/SwXMLBlockExport.hxx
+1
-2
SwXMLBlockExport.cxx
sw/source/core/swg/SwXMLBlockExport.cxx
+3
-3
No files found.
sw/source/core/inc/SwXMLBlockExport.hxx
Dosyayı görüntüle @
a11990f8
...
@@ -22,7 +22,6 @@
...
@@ -22,7 +22,6 @@
#include <xmloff/xmlexp.hxx>
#include <xmloff/xmlexp.hxx>
class
String
;
class
SwXMLTextBlocks
;
class
SwXMLTextBlocks
;
class
SwXMLBlockListExport
:
public
SvXMLExport
class
SwXMLBlockListExport
:
public
SvXMLExport
...
@@ -58,7 +57,7 @@ public:
...
@@ -58,7 +57,7 @@ public:
virtual
~
SwXMLTextBlockExport
(
void
)
{}
virtual
~
SwXMLTextBlockExport
(
void
)
{}
sal_uInt32
exportDoc
(
enum
::
xmloff
::
token
::
XMLTokenEnum
/*eClass*/
)
{
return
0
;}
sal_uInt32
exportDoc
(
enum
::
xmloff
::
token
::
XMLTokenEnum
/*eClass*/
)
{
return
0
;}
sal_uInt32
exportDoc
(
const
String
&
rText
);
sal_uInt32
exportDoc
(
const
OU
String
&
rText
);
void
_ExportAutoStyles
()
{}
void
_ExportAutoStyles
()
{}
void
_ExportMasterStyles
()
{}
void
_ExportMasterStyles
()
{}
void
_ExportContent
()
{}
void
_ExportContent
()
{}
...
...
sw/source/core/swg/SwXMLBlockExport.cxx
Dosyayı görüntüle @
a11990f8
...
@@ -97,7 +97,7 @@ SwXMLTextBlockExport::SwXMLTextBlockExport(
...
@@ -97,7 +97,7 @@ SwXMLTextBlockExport::SwXMLTextBlockExport(
XML_NAMESPACE_TEXT
);
XML_NAMESPACE_TEXT
);
}
}
sal_uInt32
SwXMLTextBlockExport
::
exportDoc
(
const
String
&
rText
)
sal_uInt32
SwXMLTextBlockExport
::
exportDoc
(
const
OU
String
&
rText
)
{
{
GetDocHandler
()
->
startDocument
();
GetDocHandler
()
->
startDocument
();
...
@@ -123,8 +123,8 @@ sal_uInt32 SwXMLTextBlockExport::exportDoc(const String &rText)
...
@@ -123,8 +123,8 @@ sal_uInt32 SwXMLTextBlockExport::exportDoc(const String &rText)
sal_Int32
nPos
=
0
;
sal_Int32
nPos
=
0
;
do
do
{
{
String
sTemp
(
rText
.
G
etToken
(
0
,
'\015'
,
nPos
)
);
OUString
sTemp
(
rText
.
g
etToken
(
0
,
'\015'
,
nPos
)
);
SvXMLElementExport
aPara
(
*
this
,
XML_NAMESPACE_TEXT
,
XML_P
,
sal_True
,
sal_False
);
SvXMLElementExport
aPara
(
*
this
,
XML_NAMESPACE_TEXT
,
XML_P
,
sal_True
,
sal_False
);
GetDocHandler
()
->
characters
(
sTemp
);
GetDocHandler
()
->
characters
(
sTemp
);
}
while
(
-
1
!=
nPos
);
}
while
(
-
1
!=
nPos
);
}
}
...
...
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