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
4abfd463
Kaydet (Commit)
4abfd463
authored
Ock 13, 2012
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
force users of WriteByteStringLine to explictly denote encoding
üst
9d4d7272
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
impedit4.cxx
editeng/source/editeng/impedit4.cxx
+1
-1
stream.hxx
tools/inc/tools/stream.hxx
+0
-1
No files found.
editeng/source/editeng/impedit4.cxx
Dosyayı görüntüle @
4abfd463
...
...
@@ -270,7 +270,7 @@ sal_uInt32 ImpEditEngine::WriteText( SvStream& rOutput, EditSelection aSel )
nEndPos
=
aSel
.
Max
().
GetIndex
();
}
XubString
aTmpStr
=
aEditDoc
.
GetParaAsString
(
pNode
,
nStartPos
,
nEndPos
);
rOutput
.
WriteByteStringLine
(
aTmpStr
);
rOutput
.
WriteByteStringLine
(
aTmpStr
,
rOutput
.
GetStreamCharSet
()
);
}
return
rOutput
.
GetError
();
...
...
tools/inc/tools/stream.hxx
Dosyayı görüntüle @
4abfd463
...
...
@@ -385,7 +385,6 @@ public:
sal_Bool
ReadByteStringLine
(
String
&
rStr
,
rtl_TextEncoding
eSrcCharSet
);
sal_Bool
WriteByteStringLine
(
const
String
&
rStr
,
rtl_TextEncoding
eDestCharSet
);
sal_Bool
WriteByteStringLine
(
const
String
&
rStr
)
{
return
WriteByteStringLine
(
rStr
,
GetStreamCharSet
());
}
/// Switch to no endian swapping and write 0xfeff
sal_Bool
StartWritingUnicodeText
();
...
...
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