summaryrefslogtreecommitdiff
path: root/include/vcl/syschild.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/syschild.hxx
parent1c8402465cfd4df862409dc310f5f099d044c4d8 (diff)
vcl: sal_Bool -> bool
Change-Id: I2a3e3d3e3266ea0f0fafdd91362076a4aa160f0e
Diffstat (limited to 'include/vcl/syschild.hxx')
-rw-r--r--include/vcl/syschild.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/vcl/syschild.hxx b/include/vcl/syschild.hxx
index 0238da24333b..1fe833eda532 100644
--- a/include/vcl/syschild.hxx
+++ b/include/vcl/syschild.hxx
@@ -30,7 +30,7 @@ class VCL_DLLPUBLIC SystemChildWindow : public Window
{
private:
using Window::ImplInit;
- SAL_DLLPRIVATE void ImplInitSysChild( Window* pParent, WinBits nStyle, SystemWindowData *pData, sal_Bool bShow = sal_False );
+ SAL_DLLPRIVATE void ImplInitSysChild( Window* pParent, WinBits nStyle, SystemWindowData *pData, bool bShow = false );
SAL_DLLPRIVATE void ImplTestJavaException( void* pEnv );
// Copy assignment is forbidden and not implemented.
@@ -40,19 +40,19 @@ private:
public:
explicit SystemChildWindow( Window* pParent, WinBits nStyle = 0 );
// create a SystemChildWindow using the given SystemWindowData
- explicit SystemChildWindow( Window* pParent, WinBits nStyle, SystemWindowData *pData, sal_Bool bShow = sal_True );
+ explicit SystemChildWindow( Window* pParent, WinBits nStyle, SystemWindowData *pData, bool bShow = true );
virtual ~SystemChildWindow();
const SystemEnvData* GetSystemData() const;
// per default systemchildwindows erase their background for better plugin support
// however, this might not always be required
- void EnableEraseBackground( sal_Bool bEnable = sal_True );
- void SetForwardKey( sal_Bool bEnable );
+ void EnableEraseBackground( bool bEnable = true );
+ void SetForwardKey( bool bEnable );
// return the platform specific handle/id of this window;
// in case the flag bUseJava is set, a java compatible overlay window
// is created on which other java windows can be created (plugin interface)
- sal_IntPtr GetParentWindowHandle( sal_Bool bUseJava = sal_False );
+ sal_IntPtr GetParentWindowHandle( bool bUseJava = false );
};
#endif // INCLUDED_VCL_SYSCHILD_HXX