[Libreoffice-commits] .: basic/source

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Fri Dec 28 09:01:37 PST 2012


 basic/source/comp/sbcomp.cxx |    2 +-
 basic/source/comp/token.cxx  |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit f52e8908a6924ad7786874ca45deb46f0dfe4e30
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Fri Dec 28 17:59:40 2012 +0100

    Some cppcheck cleaning in basic
    
    Change-Id: I01ad0d95a94ede6998850937c58495920e7a4113

diff --git a/basic/source/comp/sbcomp.cxx b/basic/source/comp/sbcomp.cxx
index 45c9414..c7f048f6 100644
--- a/basic/source/comp/sbcomp.cxx
+++ b/basic/source/comp/sbcomp.cxx
@@ -643,7 +643,6 @@ void dbg_traceStep( SbModule* pModule, sal_uInt32 nPC, sal_Int32 nCallLvl )
 
 void dbg_traceNotifyCall( SbModule* pModule, SbMethod* pMethod, sal_Int32 nCallLvl, bool bLeave )
 {
-    static const char* pSeparator = "' ================================================================================";
 
     if( !GbTraceOn )
     {
@@ -763,6 +762,7 @@ void dbg_traceNotifyCall( SbModule* pModule, SbMethod* pMethod, sal_Int32 nCallL
     int nIndent = nCallLvl * GnIndentPerCallLevel;
     if( !bLeave && !bOwnBlockSteps )
     {
+        static const char* pSeparator = "' ================================================================================";
         lcl_lineOut( "" );
         lcl_lineOut( pSeparator, lcl_getSpaces( nIndent ) );
     }
diff --git a/basic/source/comp/token.cxx b/basic/source/comp/token.cxx
index a6054c1..ca62163 100644
--- a/basic/source/comp/token.cxx
+++ b/basic/source/comp/token.cxx
@@ -214,13 +214,13 @@ SbiTokenizer::SbiTokenizer( const ::rtl::OUString& rSrc, StarBASIC* pb )
            : SbiScanner( rSrc, pb )
 {
     pTokTable = aTokTable_Basic;
-    TokenTable *tp;
     bEof = bAs = false;
     eCurTok = NIL;
     ePush = NIL;
     bEos = bKeywords = bErrorIsSymbol = true;
     if( !nToken )
     {
+        TokenTable *tp;
         for( nToken = 0, tp = pTokTable; tp->t; nToken++, tp++ )
         {}
     }


More information about the Libreoffice-commits mailing list