summaryrefslogtreecommitdiff
path: root/basic/source/comp/codegen.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/comp/codegen.cxx')
-rw-r--r--basic/source/comp/codegen.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/basic/source/comp/codegen.cxx b/basic/source/comp/codegen.cxx
index abbbce94b8f2..207fd9159bfb 100644
--- a/basic/source/comp/codegen.cxx
+++ b/basic/source/comp/codegen.cxx
@@ -46,7 +46,7 @@ sal_uInt32 SbiCodeGen::GetPC()
void SbiCodeGen::Statement()
{
- if( aMiscOptions.IsExperimentalMode() && pParser->IsCodeCompleting() )
+ if( pParser->IsCodeCompleting() )
return;
bStmnt = true;
@@ -63,7 +63,7 @@ void SbiCodeGen::Statement()
void SbiCodeGen::GenStmnt()
{
- if( aMiscOptions.IsExperimentalMode() && pParser->IsCodeCompleting() )
+ if( pParser->IsCodeCompleting() )
return;
if( bStmnt )
@@ -78,7 +78,7 @@ void SbiCodeGen::GenStmnt()
sal_uInt32 SbiCodeGen::Gen( SbiOpcode eOpcode )
{
- if( aMiscOptions.IsExperimentalMode() && pParser->IsCodeCompleting() )
+ if( pParser->IsCodeCompleting() )
return 0;
#ifdef DBG_UTIL
@@ -92,7 +92,7 @@ sal_uInt32 SbiCodeGen::Gen( SbiOpcode eOpcode )
sal_uInt32 SbiCodeGen::Gen( SbiOpcode eOpcode, sal_uInt32 nOpnd )
{
- if( aMiscOptions.IsExperimentalMode() && pParser->IsCodeCompleting() )
+ if( pParser->IsCodeCompleting() )
return 0;
#ifdef DBG_UTIL
@@ -108,7 +108,7 @@ sal_uInt32 SbiCodeGen::Gen( SbiOpcode eOpcode, sal_uInt32 nOpnd )
sal_uInt32 SbiCodeGen::Gen( SbiOpcode eOpcode, sal_uInt32 nOpnd1, sal_uInt32 nOpnd2 )
{
- if( aMiscOptions.IsExperimentalMode() && pParser->IsCodeCompleting() )
+ if( pParser->IsCodeCompleting() )
return 0;
#ifdef DBG_UTIL
@@ -127,7 +127,7 @@ sal_uInt32 SbiCodeGen::Gen( SbiOpcode eOpcode, sal_uInt32 nOpnd1, sal_uInt32 nOp
void SbiCodeGen::Save()
{
- if( aMiscOptions.IsExperimentalMode() && pParser->IsCodeCompleting() )
+ if( pParser->IsCodeCompleting() )
return;
SbiImage* p = new SbiImage;