diff options
author | Thomas Lange [tl] <tl@openoffice.org> | 2010-12-10 09:13:28 +0100 |
---|---|---|
committer | Thomas Lange [tl] <tl@openoffice.org> | 2010-12-10 09:13:28 +0100 |
commit | c7e862d6a588a4828213a09d69da8c1120c469b5 (patch) | |
tree | 41e39259c541541c85cf0384fb6dc57c4e219941 /starmath/inc/parse.hxx | |
parent | 5c1016963aea7cf63bb7f0294b67618effbe3665 (diff) |
cws tl84: warning-free code
Diffstat (limited to 'starmath/inc/parse.hxx')
-rwxr-xr-x | starmath/inc/parse.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starmath/inc/parse.hxx b/starmath/inc/parse.hxx index 4c672df058ce..e30193490539 100755 --- a/starmath/inc/parse.hxx +++ b/starmath/inc/parse.hxx @@ -270,7 +270,7 @@ public: const SmErrorDesc * PrevError(); const SmErrorDesc * GetError(USHORT i = 0xFFFF); - bool IsUsedSymbol( const String &rSymbolName ) const { m_aUsedSymbols.find( rSymbolName ) != m_aUsedSymbols.end(); } + bool IsUsedSymbol( const String &rSymbolName ) const { return m_aUsedSymbols.find( rSymbolName ) != m_aUsedSymbols.end(); } std::set< rtl::OUString > GetUsedSymbols() const { return m_aUsedSymbols; } }; |