Kaydet (Commit) 0f1969d0 authored tarafından Caolán McNamara's avatar Caolán McNamara

remove unused justification

üst 325012b1
...@@ -94,9 +94,6 @@ typedef sal_uInt16 StreamMode; ...@@ -94,9 +94,6 @@ typedef sal_uInt16 StreamMode;
#define COMPRESSMODE_ZBITMAP (sal_uInt16)0x0001 #define COMPRESSMODE_ZBITMAP (sal_uInt16)0x0001
#define COMPRESSMODE_NATIVE (sal_uInt16)0x0010 #define COMPRESSMODE_NATIVE (sal_uInt16)0x0010
#define JUSTIFY_RIGHT 0x00
#define JUSTIFY_LEFT 0x01
#define STREAM_IO_DONTKNOW 0 #define STREAM_IO_DONTKNOW 0
#define STREAM_IO_READ 1 #define STREAM_IO_READ 1
#define STREAM_IO_WRITE 2 #define STREAM_IO_WRITE 2
...@@ -277,7 +274,6 @@ private: ...@@ -277,7 +274,6 @@ private:
sal_uInt8 nPrecision; sal_uInt8 nPrecision;
sal_uInt8 nWidth; sal_uInt8 nWidth;
sal_uInt8 nPrintfParams; sal_uInt8 nPrintfParams;
sal_uInt8 nJustification;
ByteString aFormatString; ByteString aFormatString;
// Userdata // Userdata
...@@ -403,9 +399,6 @@ public: ...@@ -403,9 +399,6 @@ public:
void SetFiller( char cFil ) void SetFiller( char cFil )
{ cFiller = cFil; CreateFormatString(); } { cFiller = cFil; CreateFormatString(); }
char GetFiller() const { return cFiller; } 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_uInt32 nUInt32 );
SvStream& WriteNumber( sal_Int32 nInt32 ); SvStream& WriteNumber( sal_Int32 nInt32 );
......
...@@ -469,7 +469,6 @@ void SvStream::ImpInit() ...@@ -469,7 +469,6 @@ void SvStream::ImpInit()
nPrecision = 0; // all significant digits nPrecision = 0; // all significant digits
nWidth = 0; // default width nWidth = 0; // default width
cFiller = ' '; cFiller = ' ';
nJustification = JUSTIFY_RIGHT;
eStreamMode = 0; eStreamMode = 0;
CreateFormatString(); CreateFormatString();
...@@ -1963,11 +1962,6 @@ void SvStream::CreateFormatString() ...@@ -1963,11 +1962,6 @@ void SvStream::CreateFormatString()
aFormatString = '%'; aFormatString = '%';
nPrintfParams = SPECIAL_PARAM_NONE; nPrintfParams = SPECIAL_PARAM_NONE;
if( nJustification )
{
aFormatString += '-';
}
if( nWidth ) if( nWidth )
{ {
if( cFiller != ' ' ) if( cFiller != ' ' )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment