summaryrefslogtreecommitdiff
path: root/vcl/unx
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2008-04-07 08:21:51 +0000
committerKurt Zenker <kz@openoffice.org>2008-04-07 08:21:51 +0000
commit62fb7a2caf2746666944ff23aa78f8d09a1e951f (patch)
treeb61eeee7f79e7d9e05c9bc64f18be14620d89cef /vcl/unx
parentc1d7736c2e2bb9263c11525266e519d77d748f7b (diff)
#i87915# cast correct type
Diffstat (limited to 'vcl/unx')
-rw-r--r--vcl/unx/gtk/window/gtkframe.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/gtk/window/gtkframe.cxx b/vcl/unx/gtk/window/gtkframe.cxx
index 921d1982c1c3..03bc6b2303cd 100644
--- a/vcl/unx/gtk/window/gtkframe.cxx
+++ b/vcl/unx/gtk/window/gtkframe.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: gtkframe.cxx,v $
*
- * $Revision: 1.77 $
+ * $Revision: 1.78 $
*
- * last change: $Author: kz $ $Date: 2008-04-03 17:06:49 $
+ * last change: $Author: kz $ $Date: 2008-04-07 09:21:51 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -871,7 +871,7 @@ void GtkSalFrame::Init( SalFrame* pParent, ULONG nStyle )
}
else if( (nStyle & SAL_FRAME_STYLE_FLOAT) )
{
- gtk_window_set_type_hint( m_pWindow, GDK_WINDOW_TYPE_HINT_UTILITY );
+ gtk_window_set_type_hint( GTK_WINDOW(m_pWindow), GDK_WINDOW_TYPE_HINT_UTILITY );
}
if( m_pParent )
m_pParent->m_aChildren.push_back( this );