diff options
author | Oliver Bolte <obo@openoffice.org> | 2004-11-15 11:09:35 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2004-11-15 11:09:35 +0000 |
commit | 2791ec83bd9a72c38aa66eb299535c6c3bd2d3de (patch) | |
tree | f134f181db9406f0e37ff8d5438e5bc9cb479a60 | |
parent | e42a985febccd4128c6be39c583c71ff7f437465 (diff) |
INTEGRATION: CWS vcl30 (1.5.138); FILE MERGED
2004/11/03 17:57:21 pl 1.5.138.1: #i36582# make bean work again
-rw-r--r-- | vcl/unx/gtk/app/gtkinst.cxx | 11 |
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) ); |