summaryrefslogtreecommitdiff
path: root/include/vcl/taskpanelist.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
committerStephan Bergmann <sbergman@redhat.com>2014-02-21 12:53:51 +0100
commite8f8f24c8415898c787bbfb629247ed62e73a2b9 (patch)
treedae18a3acbf29c192118e7c003f80df8da8e21ae /include/vcl/taskpanelist.hxx
parent1c8402465cfd4df862409dc310f5f099d044c4d8 (diff)
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'include/vcl/taskpanelist.hxx')
-rw-r--r--include/vcl/taskpanelist.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/vcl/taskpanelist.hxx b/include/vcl/taskpanelist.hxx
index 5e4fb2dd48b0..8910ca2873c3 100644
--- a/include/vcl/taskpanelist.hxx
+++ b/include/vcl/taskpanelist.hxx
@@ -28,11 +28,11 @@
class VCL_DLLPUBLIC TaskPaneList
{
::std::vector<Window *> mTaskPanes;
- Window *FindNextFloat( Window *pWindow, sal_Bool bForward = sal_True );
- Window *FindNextSplitter( Window *pWindow, sal_Bool bForward = sal_True );
+ Window *FindNextFloat( Window *pWindow, bool bForward = true );
+ Window *FindNextSplitter( Window *pWindow, bool bForward = true );
public:
- sal_Bool IsInList( Window *pWindow );
+ bool IsInList( Window *pWindow );
public:
TaskPaneList();
@@ -40,7 +40,7 @@ public:
void AddWindow( Window *pWindow );
void RemoveWindow( Window *pWindow );
- sal_Bool HandleKeyEvent( KeyEvent aKeyEvent );
+ bool HandleKeyEvent( KeyEvent aKeyEvent );
};
#endif