diff options
author | Kurt Zenker <kz@openoffice.org> | 2009-06-04 15:47:31 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2009-06-04 15:47:31 +0000 |
commit | 837a58b872594da72126e120e0575b5401c9e0c7 (patch) | |
tree | 8ce41a17b48047446ab7e53563b60492bcab6866 /idl/source/prj | |
parent | e35a381f72980cf370dcfa8e859dc854cf153a02 (diff) |
CWS-TOOLING: integrate CWS cmcfixes59
2009-05-18 10:10:11 +0200 cmc r272001 : #i102012# remove extensions warnings, and set as warnings-free
2009-05-16 17:29:59 +0200 cmc r271981 : #i101990# silence warning, logic is unchanged
2009-05-16 17:13:59 +0200 cmc r271980 : #i100412 remove warning, logic is unchanged
2009-05-16 17:08:57 +0200 cmc r271979 : #i100412 remove warning, logic is unchanged, matches comments for intent
2009-05-16 17:01:08 +0200 cmc r271978 : #i86576# remove uncallable code
2009-05-16 15:41:46 +0200 cmc r271977 : #i101988# fix up consts for warning-free
Diffstat (limited to 'idl/source/prj')
-rw-r--r-- | idl/source/prj/database.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/idl/source/prj/database.cxx b/idl/source/prj/database.cxx index 264baa42c298..8933156bfc69 100644 --- a/idl/source/prj/database.cxx +++ b/idl/source/prj/database.cxx @@ -251,7 +251,7 @@ void SvIdlDataBase::SetError( const ByteString & rError, SvToken * pTok ) aError.SetText( "hgchcg" ); if( aError.nLine < pTok->GetLine() - || aError.nLine == pTok->GetLine() && aError.nColumn < pTok->GetColumn() ) + || (aError.nLine == pTok->GetLine() && aError.nColumn < pTok->GetColumn()) ) { aError = SvIdlError( pTok->GetLine(), pTok->GetColumn() ); aError.SetText( rError ); |