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
2caef562
Kaydet (Commit)
2caef562
authored
Haz 10, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove ugly and unused WriteUniOrByteStringLine
üst
bfb45c2b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
13 deletions
+0
-13
stream.hxx
tools/inc/tools/stream.hxx
+0
-5
stream.cxx
tools/source/stream/stream.cxx
+0
-8
No files found.
tools/inc/tools/stream.hxx
Dosyayı görüntüle @
2caef562
...
@@ -490,11 +490,6 @@ public:
...
@@ -490,11 +490,6 @@ public:
sal_Bool
WriteUniStringLine
(
const
String
&
rStr
);
sal_Bool
WriteUniStringLine
(
const
String
&
rStr
);
/// Write multiple lines of Unicode (with CovertLineEnd) and append line end (endlu())
/// Write multiple lines of Unicode (with CovertLineEnd) and append line end (endlu())
sal_Bool
WriteUniStringLines
(
const
String
&
rStr
);
sal_Bool
WriteUniStringLines
(
const
String
&
rStr
);
/// Write a line of Unicode if eDestCharSet==RTL_TEXTENCODING_UNICODE,
/// otherwise write a line of Bytecode converted to eDestCharSet
sal_Bool
WriteUniOrByteStringLine
(
const
String
&
rStr
,
rtl_TextEncoding
eDestCharSet
);
sal_Bool
WriteUniOrByteStringLine
(
const
String
&
rStr
)
{
return
WriteUniOrByteStringLine
(
rStr
,
GetStreamCharSet
()
);
}
/// Write a Unicode character if eDestCharSet==RTL_TEXTENCODING_UNICODE,
/// Write a Unicode character if eDestCharSet==RTL_TEXTENCODING_UNICODE,
/// otherwise write as Bytecode converted to eDestCharSet.
/// otherwise write as Bytecode converted to eDestCharSet.
...
...
tools/source/stream/stream.cxx
Dosyayı görüntüle @
2caef562
...
@@ -938,14 +938,6 @@ sal_Bool SvStream::WriteUniStringLine( const String& rStr )
...
@@ -938,14 +938,6 @@ sal_Bool SvStream::WriteUniStringLine( const String& rStr )
return
nError
==
SVSTREAM_OK
;
return
nError
==
SVSTREAM_OK
;
}
}
sal_Bool
SvStream
::
WriteUniOrByteStringLine
(
const
String
&
rStr
,
rtl_TextEncoding
eDestCharSet
)
{
if
(
eDestCharSet
==
RTL_TEXTENCODING_UNICODE
)
return
WriteUniStringLine
(
rStr
);
else
return
WriteByteStringLine
(
rStr
,
eDestCharSet
);
}
/*************************************************************************
/*************************************************************************
|*
|*
|* Stream::WriteLines()
|* Stream::WriteLines()
...
...
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