summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-06-13 21:10:34 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-06-14 09:56:44 +0100
commit0f1969d04b9ba24235d577e42a9ab86c44ecfd12 (patch)
treef013dca1b87f6ef2eaf533ebcb95256c19f86541 /tools/source
parent325012b1df9e453c0c25198aea9f0621213a64e4 (diff)
remove unused justification
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/stream/stream.cxx6
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index 3fd9eb399dac..6a71571ec9db 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -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 != ' ' )