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
b11f257d
Kaydet (Commit)
b11f257d
authored
Eki 12, 2013
tarafından
Tor Lillqvist
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Test _WIN32 instead of UNX as it's Win32 that is the special case here
Change-Id: Ic729eab62109d854122fa5c6b7b4dc163088dd04
üst
610681b9
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
16 deletions
+8
-16
htmlout.hxx
include/svtools/htmlout.hxx
+1
-5
rtfout.hxx
include/svtools/rtfout.hxx
+1
-5
htmlout.cxx
svtools/source/svhtml/htmlout.cxx
+3
-3
rtfout.cxx
svtools/source/svrtf/rtfout.cxx
+3
-3
No files found.
include/svtools/htmlout.hxx
Dosyayı görüntüle @
b11f257d
...
@@ -51,11 +51,7 @@ struct SVT_DLLPUBLIC HTMLOutContext
...
@@ -51,11 +51,7 @@ struct SVT_DLLPUBLIC HTMLOutContext
struct
HTMLOutFuncs
struct
HTMLOutFuncs
{
{
#if defined(UNX)
static
const
sal_Char
sNewLine
[];
static
const
sal_Char
sNewLine
;
// nur \012 oder \015
#else
static
const
sal_Char
sNewLine
[];
// \015\012
#endif
SVT_DLLPUBLIC
static
OString
ConvertStringToHTML
(
const
OUString
&
sSrc
,
SVT_DLLPUBLIC
static
OString
ConvertStringToHTML
(
const
OUString
&
sSrc
,
rtl_TextEncoding
eDestEnc
=
RTL_TEXTENCODING_MS_1252
,
rtl_TextEncoding
eDestEnc
=
RTL_TEXTENCODING_MS_1252
,
...
...
include/svtools/rtfout.hxx
Dosyayı görüntüle @
b11f257d
...
@@ -33,11 +33,7 @@ class SvStream;
...
@@ -33,11 +33,7 @@ class SvStream;
class
SVT_DLLPUBLIC
RTFOutFuncs
class
SVT_DLLPUBLIC
RTFOutFuncs
{
{
public
:
public
:
#if defined(UNX)
static
const
sal_Char
sNewLine
[];
static
const
sal_Char
sNewLine
;
// nur \012 oder \015
#else
static
const
sal_Char
sNewLine
[];
// \015\012
#endif
static
SvStream
&
Out_Char
(
SvStream
&
,
sal_Unicode
cChar
,
static
SvStream
&
Out_Char
(
SvStream
&
,
sal_Unicode
cChar
,
int
*
pUCMode
,
int
*
pUCMode
,
...
...
svtools/source/svhtml/htmlout.cxx
Dosyayı görüntüle @
b11f257d
...
@@ -31,10 +31,10 @@
...
@@ -31,10 +31,10 @@
#include <svtools/imappoly.hxx>
#include <svtools/imappoly.hxx>
#include "svl/urihelper.hxx"
#include "svl/urihelper.hxx"
#if defined(UNX)
#ifdef _WIN32
const
sal_Char
HTMLOutFuncs
::
sNewLine
=
'\012'
;
#else
const
sal_Char
HTMLOutFuncs
::
sNewLine
[]
=
"
\015\012
"
;
const
sal_Char
HTMLOutFuncs
::
sNewLine
[]
=
"
\015\012
"
;
#else
const
sal_Char
HTMLOutFuncs
::
sNewLine
[]
=
"
\012
"
;
#endif
#endif
#define TXTCONV_BUFFER_SIZE 20
#define TXTCONV_BUFFER_SIZE 20
...
...
svtools/source/svrtf/rtfout.cxx
Dosyayı görüntüle @
b11f257d
...
@@ -25,10 +25,10 @@
...
@@ -25,10 +25,10 @@
#include <svtools/rtfout.hxx>
#include <svtools/rtfout.hxx>
#if defined(UNX)
#ifdef _WIN32
const
sal_Char
RTFOutFuncs
::
sNewLine
=
'\012'
;
#else
const
sal_Char
RTFOutFuncs
::
sNewLine
[]
=
"
\015\012
"
;
const
sal_Char
RTFOutFuncs
::
sNewLine
[]
=
"
\015\012
"
;
#else
const
sal_Char
RTFOutFuncs
::
sNewLine
[]
=
"
\012
"
;
#endif
#endif
...
...
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