summaryrefslogtreecommitdiff
path: root/vcl/unx/gtk3/gtk3gtkobject.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vcl/unx/gtk3/gtk3gtkobject.cxx')
-rw-r--r--vcl/unx/gtk3/gtk3gtkobject.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkobject.cxx b/vcl/unx/gtk3/gtk3gtkobject.cxx
index 1a2cea0d71da..173e1b02f356 100644
--- a/vcl/unx/gtk3/gtk3gtkobject.cxx
+++ b/vcl/unx/gtk3/gtk3gtkobject.cxx
@@ -134,7 +134,7 @@ void GtkSalObjectBase::BeginSetClipRegion( sal_uInt32 )
m_pRegion = cairo_region_create();
}
-void GtkSalObjectBase::UnionClipRegion( long nX, long nY, long nWidth, long nHeight )
+void GtkSalObjectBase::UnionClipRegion( tools::Long nX, tools::Long nY, tools::Long nWidth, tools::Long nHeight )
{
GdkRectangle aRect;
aRect.x = nX;
@@ -151,7 +151,7 @@ void GtkSalObject::EndSetClipRegion()
gdk_window_shape_combine_region( gtk_widget_get_window(m_pSocket), m_pRegion, 0, 0 );
}
-void GtkSalObject::SetPosSize(long nX, long nY, long nWidth, long nHeight)
+void GtkSalObject::SetPosSize(tools::Long nX, tools::Long nY, tools::Long nWidth, tools::Long nHeight)
{
if (m_pSocket)
{
@@ -375,7 +375,7 @@ void GtkSalObjectWidgetClip::ApplyClipRegion()
gtk_adjustment_set_value(gtk_scrolled_window_get_vadjustment(GTK_SCROLLED_WINDOW(m_pScrolledWindow)), m_aClipRect.Top());
}
-void GtkSalObjectWidgetClip::SetPosSize(long nX, long nY, long nWidth, long nHeight)
+void GtkSalObjectWidgetClip::SetPosSize(tools::Long nX, tools::Long nY, tools::Long nWidth, tools::Long nHeight)
{
m_aRect = tools::Rectangle(Point(nX, nY), Size(nWidth, nHeight));
if (m_pSocket)