summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-03-18 11:23:57 +0200
committerNoel Grandin <noel@peralex.com>2014-03-18 11:27:39 +0200
commitc3e3f466571e4993c1b5e42c6d15e37c48f3a069 (patch)
tree538fb90ed2c05e725f28ff16d41fd27ca38a7573 /basctl
parente399c0759812affd4f7f6e1e3aacfbcafc06ad6d (diff)
sfx2: sal_Bool->bool
Change-Id: I375a72c34e46778385a9fdc24c9ebd0f0a3f3c9b
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/basides1.cxx6
-rw-r--r--basctl/source/inc/basidesh.hxx6
2 files changed, 6 insertions, 6 deletions
diff --git a/basctl/source/basicide/basides1.cxx b/basctl/source/basicide/basides1.cxx
index 59f28873abbb..eb05257bcb71 100644
--- a/basctl/source/basicide/basides1.cxx
+++ b/basctl/source/basicide/basides1.cxx
@@ -965,7 +965,7 @@ void Shell::GetState(SfxItemSet &rSet)
pCurWin->GetState( rSet );
}
-sal_Bool Shell::HasUIFeature( sal_uInt32 nFeature )
+bool Shell::HasUIFeature( sal_uInt32 nFeature )
{
bool bResult = false;
@@ -1230,7 +1230,7 @@ Reference< XModel > Shell::GetCurrentDocument() const
return xDocument;
}
-void Shell::Activate( sal_Bool bMDI )
+void Shell::Activate( bool bMDI )
{
SfxViewShell::Activate( bMDI );
@@ -1241,7 +1241,7 @@ void Shell::Activate( sal_Bool bMDI )
}
}
-void Shell::Deactivate( sal_Bool bMDI )
+void Shell::Deactivate( bool bMDI )
{
// bMDI == true means that another MDI has been activated; in case of a
// deactivate due to a MessageBox bMDI is false
diff --git a/basctl/source/inc/basidesh.hxx b/basctl/source/inc/basidesh.hxx
index c4c5d72258bb..fdb8ef2893d6 100644
--- a/basctl/source/inc/basidesh.hxx
+++ b/basctl/source/inc/basidesh.hxx
@@ -130,8 +130,8 @@ private:
virtual void SFX_NOTIFY( SfxBroadcaster& rBC, const TypeId& rBCType,
const SfxHint& rHint, const TypeId& rHintType );
- virtual void Activate(sal_Bool bMDI);
- virtual void Deactivate(sal_Bool bMDI);
+ virtual void Activate(bool bMDI);
+ virtual void Deactivate(bool bMDI);
virtual void Move();
virtual void ShowCursor( bool bOn = true );
@@ -185,7 +185,7 @@ public:
void ExecuteBasic( SfxRequest& rReq );
void ExecuteDialog( SfxRequest& rReq );
- virtual sal_Bool HasUIFeature( sal_uInt32 nFeature );
+ virtual bool HasUIFeature( sal_uInt32 nFeature );
bool CallBasicErrorHdl( StarBASIC* pBasic );
long CallBasicBreakHdl( StarBASIC* pBasic );