summaryrefslogtreecommitdiff
path: root/basic/source/runtime/runtime.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/runtime/runtime.cxx')
-rw-r--r--basic/source/runtime/runtime.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx
index f81e99dd89a5..803fb85b0585 100644
--- a/basic/source/runtime/runtime.cxx
+++ b/basic/source/runtime/runtime.cxx
@@ -50,7 +50,7 @@ bool SbiRuntime::isVBAEnabled()
return result;
}
-void StarBASIC::SetVBAEnabled( sal_Bool bEnabled )
+void StarBASIC::SetVBAEnabled( bool bEnabled )
{
if ( bDocBasic )
{
@@ -58,15 +58,15 @@ void StarBASIC::SetVBAEnabled( sal_Bool bEnabled )
}
}
-sal_Bool StarBASIC::isVBAEnabled()
+bool StarBASIC::isVBAEnabled()
{
if ( bDocBasic )
{
if( SbiRuntime::isVBAEnabled() )
- return sal_True;
+ return true;
return bVBAEnabled;
}
- return sal_False;
+ return false;
}