diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-08-16 00:43:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-08-16 09:04:09 +0100 |
commit | ac96fbd737d01c074232ce74ba5279550ee8ce5d (patch) | |
tree | fa60ab2c4ca9a472dc30877c38fc581799dcd889 /tools | |
parent | e74517995b04e24ff96daa1d71969111782c372d (diff) |
there's no point to that assign
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bootstrp/cppdep.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bootstrp/cppdep.cxx b/tools/bootstrp/cppdep.cxx index ad5bb80eaffc..b2d6cadb5a08 100644 --- a/tools/bootstrp/cppdep.cxx +++ b/tools/bootstrp/cppdep.cxx @@ -226,7 +226,7 @@ ByteString CppDep::IsIncludeStatement( ByteString aLine ) #endif if ( aTmpStr.Equals("#include") ) { - aTmpStr = aLine.Erase( 0, 8 ); + aLine.Erase( 0, 8 ); sal_uInt16 nLen = aLine.Len(); aLine.Erase( nLen-1, 1 ); aLine.Erase( 0, 1 ); |