From 837a58b872594da72126e120e0575b5401c9e0c7 Mon Sep 17 00:00:00 2001 From: Kurt Zenker Date: Thu, 4 Jun 2009 15:47:31 +0000 Subject: 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 --- idl/source/prj/database.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'idl') 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 ); -- cgit