summaryrefslogtreecommitdiff
path: root/basctl/source/basicide/basides2.cxx
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2010-10-05 07:57:51 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2010-10-07 19:06:00 -0500
commit6ed0bcdd5bc07692fc81406942509eb9c30d3904 (patch)
treeb49fff01a6291992327ebefedc30f7ccaf96a990 /basctl/source/basicide/basides2.cxx
parentf791a7ba711f68843779b5929f15cec611b8c545 (diff)
FASTBOOL to bool conversion
Diffstat (limited to 'basctl/source/basicide/basides2.cxx')
-rw-r--r--basctl/source/basicide/basides2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/basicide/basides2.cxx b/basctl/source/basicide/basides2.cxx
index 3a3a162f5b5e..4f3079cdaec7 100644
--- a/basctl/source/basicide/basides2.cxx
+++ b/basctl/source/basicide/basides2.cxx
@@ -328,10 +328,10 @@ void __EXPORT BasicIDEShell::Move()
((ModulWindow*)pCurWin)->FrameWindowMoved();
}
-void __EXPORT BasicIDEShell::ShowCursor( FASTBOOL bOn )
+void __EXPORT BasicIDEShell::ShowCursor( bool bOn )
{
if ( pCurWin && pCurWin->ISA( ModulWindow ) )
- ((ModulWindow*)pCurWin)->ShowCursor( (BOOL)bOn );
+ ((ModulWindow*)pCurWin)->ShowCursor( bOn );
}
// Hack for #101048