summaryrefslogtreecommitdiff
path: root/sfx2/source/appl/app.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/appl/app.cxx')
-rw-r--r--sfx2/source/appl/app.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/appl/app.cxx b/sfx2/source/appl/app.cxx
index 121bc98c1db5..858d97938781 100644
--- a/sfx2/source/appl/app.cxx
+++ b/sfx2/source/appl/app.cxx
@@ -501,15 +501,15 @@ IMPL_LINK_TYPED( SfxApplication, GlobalBasicErrorHdl_Impl, StarBASIC*, pStarBasi
aMod.release();
// call basicide_handle_basic_error in basctl
- bool nRet = pSymbol && pSymbol( pStarBasic );
+ bool bRet = pSymbol && pSymbol( pStarBasic );
#else
- bool nRet = basicide_handle_basic_error( pStarBasic );
+ bool bRet = basicide_handle_basic_error( pStarBasic );
#endif
- return nRet;
+ return bRet;
#endif
}