diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2008-01-29 07:37:57 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2008-01-29 07:37:57 +0000 |
commit | 051de5afe57c4557441a68637dcfc5b1c718d437 (patch) | |
tree | bc0d89e2758ec3c24317eb4116c63869b6f4f6b5 /vcl | |
parent | 089f3067009f4cbcc193bcb491a12fe035ec9923 (diff) |
INTEGRATION: CWS transogl02 (1.17.104); FILE MERGED
2007/12/10 19:00:18 radekdoulik 1.17.104.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')
-rw-r--r-- | vcl/unx/gtk/app/gtkinst.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/unx/gtk/app/gtkinst.cxx b/vcl/unx/gtk/app/gtkinst.cxx index 4e1347cd8779..d036f2742d83 100644 --- a/vcl/unx/gtk/app/gtkinst.cxx +++ b/vcl/unx/gtk/app/gtkinst.cxx @@ -4,9 +4,9 @@ * * $RCSfile: gtkinst.cxx,v $ * - * $Revision: 1.17 $ + * $Revision: 1.18 $ * - * last change: $Author: vg $ $Date: 2007-08-30 13:55:37 $ + * last change: $Author: vg $ $Date: 2008-01-29 08:37:57 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -216,14 +216,14 @@ SalFrame* GtkInstance::CreateChildFrame( SystemParentData* pParentData, ULONG ) return pFrame; } -SalObject* GtkInstance::CreateObject( SalFrame* pParent, SystemWindowData* pWindowData ) +SalObject* GtkInstance::CreateObject( SalFrame* pParent, SystemWindowData* pWindowData, BOOL bShow ) { // there is no method to set a visual for a GtkWidget // so we need the X11SalObject in that case if( pWindowData ) - return X11SalObject::CreateObject( pParent, pWindowData ); + return X11SalObject::CreateObject( pParent, pWindowData, bShow ); - return new GtkSalObject( static_cast<GtkSalFrame*>(pParent) ); + return new GtkSalObject( static_cast<GtkSalFrame*>(pParent), bShow ); } GtkYieldMutex::GtkYieldMutex() |