Kaydet (Commit) 051de5af authored tarafından Vladimir Glazounov's avatar Vladimir Glazounov

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
üst 089f3067
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
* *
* $RCSfile: gtkinst.cxx,v $ * $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 Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1. * the terms of GNU Lesser General Public License Version 2.1.
...@@ -216,14 +216,14 @@ SalFrame* GtkInstance::CreateChildFrame( SystemParentData* pParentData, ULONG ) ...@@ -216,14 +216,14 @@ SalFrame* GtkInstance::CreateChildFrame( SystemParentData* pParentData, ULONG )
return pFrame; 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 // there is no method to set a visual for a GtkWidget
// so we need the X11SalObject in that case // so we need the X11SalObject in that case
if( pWindowData ) 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() GtkYieldMutex::GtkYieldMutex()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment