summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--vcl/unx/gtk/app/gtkinst.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/vcl/unx/gtk/app/gtkinst.cxx b/vcl/unx/gtk/app/gtkinst.cxx
index 5c2634dedbf1..b17c6cd7cf7e 100644
--- a/vcl/unx/gtk/app/gtkinst.cxx
+++ b/vcl/unx/gtk/app/gtkinst.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: gtkinst.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: rt $ $Date: 2004-06-02 14:53:44 $
+ * last change: $Author: obo $ $Date: 2004-11-15 12:09:35 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -202,6 +202,13 @@ SalFrame* GtkInstance::CreateFrame( SalFrame* pParent, ULONG nStyle )
return new GtkSalFrame( pParent, nStyle );
}
+SalFrame* GtkInstance::CreateChildFrame( SystemParentData* pParentData, ULONG nStyle )
+{
+ SalFrame* pFrame = new GtkSalFrame( pParentData );
+
+ return pFrame;
+}
+
SalObject* GtkInstance::CreateObject( SalFrame* pParent )
{
return new GtkSalObject( static_cast<GtkSalFrame*>(pParent) );