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
0f1969d0
Kaydet (Commit)
0f1969d0
authored
Haz 13, 2011
tarafından
Caolán McNamara
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
remove unused justification
üst
325012b1
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
-7
stream.cxx
tools/source/stream/stream.cxx
+0
-6
No files found.
tools/inc/tools/stream.hxx
Dosyayı görüntüle @
0f1969d0
...
...
@@ -94,9 +94,6 @@ typedef sal_uInt16 StreamMode;
#define COMPRESSMODE_ZBITMAP (sal_uInt16)0x0001
#define COMPRESSMODE_NATIVE (sal_uInt16)0x0010
#define JUSTIFY_RIGHT 0x00
#define JUSTIFY_LEFT 0x01
#define STREAM_IO_DONTKNOW 0
#define STREAM_IO_READ 1
#define STREAM_IO_WRITE 2
...
...
@@ -277,7 +274,6 @@ private:
sal_uInt8
nPrecision
;
sal_uInt8
nWidth
;
sal_uInt8
nPrintfParams
;
sal_uInt8
nJustification
;
ByteString
aFormatString
;
// Userdata
...
...
@@ -403,9 +399,6 @@ public:
void
SetFiller
(
char
cFil
)
{
cFiller
=
cFil
;
CreateFormatString
();
}
char
GetFiller
()
const
{
return
cFiller
;
}
void
SetJustification
(
sal_uInt8
nJus
)
{
nJustification
=
nJus
;
CreateFormatString
();
}
sal_uInt8
GetJustification
()
const
{
return
nJustification
;
}
SvStream
&
WriteNumber
(
sal_uInt32
nUInt32
);
SvStream
&
WriteNumber
(
sal_Int32
nInt32
);
...
...
tools/source/stream/stream.cxx
Dosyayı görüntüle @
0f1969d0
...
...
@@ -469,7 +469,6 @@ void SvStream::ImpInit()
nPrecision
=
0
;
// all significant digits
nWidth
=
0
;
// default width
cFiller
=
' '
;
nJustification
=
JUSTIFY_RIGHT
;
eStreamMode
=
0
;
CreateFormatString
();
...
...
@@ -1963,11 +1962,6 @@ void SvStream::CreateFormatString()
aFormatString
=
'%'
;
nPrintfParams
=
SPECIAL_PARAM_NONE
;
if
(
nJustification
)
{
aFormatString
+=
'-'
;
}
if
(
nWidth
)
{
if
(
cFiller
!=
' '
)
...
...
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