summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-01-21 17:17:12 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-01-21 18:24:03 +0100
commit101e5cc49c413bede477c0f44b2256e087f7db8c (patch)
treed0a2150de095e7f4465623102d910db6cc9ed7f6 /include
parentb184636e1ccbc6560430a6a3e44fe56d2014c8f7 (diff)
bool improvements
Change-Id: I85faf4e3fcab6763af11eb6a4082820e88bea1ca
Diffstat (limited to 'include')
-rw-r--r--include/svtools/editbrowsebox.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svtools/editbrowsebox.hxx b/include/svtools/editbrowsebox.hxx
index 6d36aeaa8267..900222d8c60b 100644
--- a/include/svtools/editbrowsebox.hxx
+++ b/include/svtools/editbrowsebox.hxx
@@ -87,7 +87,7 @@ namespace svt
protected:
Control* pWindow;
- sal_Bool bSuspended; // <sal_True> if the window is hidden and disabled
+ bool bSuspended; // <true> if the window is hidden and disabled
public:
TYPEINFO();
@@ -108,7 +108,7 @@ namespace svt
// suspending the controller is not culmulative!
void suspend( );
void resume( );
- inline sal_Bool isSuspended( ) const { return bSuspended; }
+ inline bool isSuspended( ) const { return bSuspended; }
protected:
virtual sal_Bool MoveAllowed(const KeyEvent& rEvt) const;