summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-10-09 11:42:02 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-10-10 08:51:15 +0100
commit2d25e3c354bfed19ee5c6f596cf57eb58ead9162 (patch)
tree6da26b8030eed260327376ead7a73c03bee93c3b /tools
parent9da5c3b8e3b53c8b423febafbdc513c55525153e (diff)
tidy this a little bit
Diffstat (limited to 'tools')
-rw-r--r--tools/source/stream/stream.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index afaa9174ee13..34dc93d66bd7 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -717,8 +717,7 @@ sal_Bool SvStream::ReadLine( ByteString& rStr )
sal_Bool SvStream::ReadLine( rtl::OString& rStr )
{
ByteString aFoo;
- sal_Bool ret;
- ret = ReadLine(aFoo);
+ sal_Bool ret = ReadLine(aFoo);
rStr = aFoo;
return ret;
}