diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-10-09 11:42:02 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-10-10 08:51:15 +0100 |
commit | 2d25e3c354bfed19ee5c6f596cf57eb58ead9162 (patch) | |
tree | 6da26b8030eed260327376ead7a73c03bee93c3b /tools | |
parent | 9da5c3b8e3b53c8b423febafbdc513c55525153e (diff) |
tidy this a little bit
Diffstat (limited to 'tools')
-rw-r--r-- | tools/source/stream/stream.cxx | 3 |
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; } |