summaryrefslogtreecommitdiff
path: root/vcl/source
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2008-01-29 07:37:44 +0000
committerVladimir Glazounov <vg@openoffice.org>2008-01-29 07:37:44 +0000
commit089f3067009f4cbcc193bcb491a12fe035ec9923 (patch)
tree2c695e21a3d0760548c5a1d92d96b39e14f404a9 /vcl/source
parente775d39373cac1bc94ae6055da195c854674cd89 (diff)
INTEGRATION: CWS transogl02 (1.11.144); FILE MERGED
2007/12/10 19:00:17 radekdoulik 1.11.144.1: add BOOL bShow parameter to SystemChildWindow constructor to allow creating of unmapped window with possibility to show it (map it) later to avoid flicker
Diffstat (limited to 'vcl/source')
-rw-r--r--vcl/source/window/syschild.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/vcl/source/window/syschild.cxx b/vcl/source/window/syschild.cxx
index bb88b4e12993..7d8ec0832fae 100644
--- a/vcl/source/window/syschild.cxx
+++ b/vcl/source/window/syschild.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: syschild.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: rt $ $Date: 2007-07-24 10:22:04 $
+ * last change: $Author: vg $ $Date: 2008-01-29 08:37:44 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -128,9 +128,9 @@ long ImplSysChildProc( void* pInst, SalObject* /* pObject */,
// =======================================================================
-void SystemChildWindow::ImplInitSysChild( Window* pParent, WinBits nStyle, SystemWindowData *pData )
+void SystemChildWindow::ImplInitSysChild( Window* pParent, WinBits nStyle, SystemWindowData *pData, BOOL bShow )
{
- mpWindowImpl->mpSysObj = ImplGetSVData()->mpDefInst->CreateObject( pParent->ImplGetFrame(), pData );
+ mpWindowImpl->mpSysObj = ImplGetSVData()->mpDefInst->CreateObject( pParent->ImplGetFrame(), pData, bShow );
Window::ImplInit( pParent, nStyle, NULL );
@@ -153,10 +153,10 @@ SystemChildWindow::SystemChildWindow( Window* pParent, WinBits nStyle ) :
// -----------------------------------------------------------------------
-SystemChildWindow::SystemChildWindow( Window* pParent, WinBits nStyle, SystemWindowData *pData ) :
+SystemChildWindow::SystemChildWindow( Window* pParent, WinBits nStyle, SystemWindowData *pData, BOOL bShow ) :
Window( WINDOW_SYSTEMCHILDWINDOW )
{
- ImplInitSysChild( pParent, nStyle, pData );
+ ImplInitSysChild( pParent, nStyle, pData, bShow );
}
// -----------------------------------------------------------------------