summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2007-04-25 13:53:25 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2007-04-25 13:53:25 +0000
commit31180fd5887d418127f240489007ae0b657fcf11 (patch)
tree19867e58f0651be6e3cdabea5f0d337632327294 /basctl
parentb1d34e054b14fe32b6ee5be9d678ce1597d53c3e (diff)
INTEGRATION: CWS sixtyfour11 (1.49.8); FILE MERGED
2007/02/20 10:31:09 kendy 1.49.8.1: #i74692# Let the form control properties dialog show even on 64bit.
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/basides1.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/basctl/source/basicide/basides1.cxx b/basctl/source/basicide/basides1.cxx
index 2963d89f6568..51771a1ff57d 100644
--- a/basctl/source/basicide/basides1.cxx
+++ b/basctl/source/basicide/basides1.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: basides1.cxx,v $
*
- * $Revision: 1.50 $
+ * $Revision: 1.51 $
*
- * last change: $Author: obo $ $Date: 2007-03-15 15:53:21 $
+ * last change: $Author: rt $ $Date: 2007-04-25 14:53:25 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -1030,15 +1030,15 @@ void __EXPORT BasicIDEShell::GetState(SfxItemSet &rSet)
pCurWin->GetState( rSet );
}
-BOOL BasicIDEShell::HasUIFeature( ULONG nFeature )
+sal_Bool BasicIDEShell::HasUIFeature( sal_uInt32 nFeature )
{
- BOOL bResult = FALSE;
+ sal_Bool bResult = sal_False;
if ( (nFeature & BASICIDE_UI_FEATURE_SHOW_BROWSER) == BASICIDE_UI_FEATURE_SHOW_BROWSER )
{
// fade out (in) property browser in module (dialog) windows
if ( pCurWin && pCurWin->IsA( TYPE( DialogWindow ) ) && !pCurWin->IsReadOnly() )
- bResult = TRUE;
+ bResult = sal_True;
}
return bResult;