summaryrefslogtreecommitdiff
path: root/include/vcl/syschild.hxx
diff options
context:
space:
mode:
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