diff options
Diffstat (limited to 'vcl/unx/gtk/window/gtkobject.cxx')
-rw-r--r-- | vcl/unx/gtk/window/gtkobject.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vcl/unx/gtk/window/gtkobject.cxx b/vcl/unx/gtk/window/gtkobject.cxx index f2ab26179d27..68c8f1f1286d 100644 --- a/vcl/unx/gtk/window/gtkobject.cxx +++ b/vcl/unx/gtk/window/gtkobject.cxx @@ -33,7 +33,7 @@ #include <unx/gtk/gtkdata.hxx> #include <unx/gtk/gtkinst.hxx> -GtkSalObject::GtkSalObject( GtkSalFrame* pParent, BOOL bShow ) +GtkSalObject::GtkSalObject( GtkSalFrame* pParent, sal_Bool bShow ) : m_pSocket( NULL ), m_pRegion( NULL ) { @@ -104,12 +104,12 @@ void GtkSalObject::ResetClipRegion() gdk_window_shape_combine_region( m_pSocket->window, NULL, 0, 0 ); } -USHORT GtkSalObject::GetClipRegionType() +sal_uInt16 GtkSalObject::GetClipRegionType() { return SAL_OBJECT_CLIP_INCLUDERECTS; } -void GtkSalObject::BeginSetClipRegion( ULONG ) +void GtkSalObject::BeginSetClipRegion( sal_uLong ) { if( m_pRegion ) gdk_region_destroy( m_pRegion ); @@ -144,7 +144,7 @@ void GtkSalObject::SetPosSize( long nX, long nY, long nWidth, long nHeight ) } } -void GtkSalObject::Show( BOOL bVisible ) +void GtkSalObject::Show( sal_Bool bVisible ) { if( m_pSocket ) { @@ -155,7 +155,7 @@ void GtkSalObject::Show( BOOL bVisible ) } } -void GtkSalObject::Enable( BOOL ) +void GtkSalObject::Enable( sal_Bool ) { } |