summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-12-17 15:37:14 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-12-17 22:31:27 +0100
commit41c34570b98f31cc920efa2ba0eda9634188122a (patch)
tree93a69c5fee53107357a181337bc18c384caead63 /vcl/inc
parent44fda47be99dc870900ac08f77e1d2343219df31 (diff)
unfold the gtk-related inline we don't need anymore
Change-Id: I9b5ef4cc4e00649c4609bb576c01ce2ea15e4fdd Reviewed-on: https://gerrit.libreoffice.org/85309 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/inc')
-rw-r--r--vcl/inc/unx/gtk/gtkdata.hxx15
1 files changed, 0 insertions, 15 deletions
diff --git a/vcl/inc/unx/gtk/gtkdata.hxx b/vcl/inc/unx/gtk/gtkdata.hxx
index 9830843e30ab..3ee22e90f1b7 100644
--- a/vcl/inc/unx/gtk/gtkdata.hxx
+++ b/vcl/inc/unx/gtk/gtkdata.hxx
@@ -40,26 +40,11 @@ namespace com { namespace sun { namespace star { namespace accessibility { class
class GtkSalDisplay;
class DocumentFocusListener;
-inline GdkWindow * widget_get_window(GtkWidget *widget)
-{
- return gtk_widget_get_window(widget);
-}
-
inline ::Window widget_get_xid(GtkWidget *widget)
{
return GDK_WINDOW_XID(gtk_widget_get_window(widget));
}
-inline void widget_set_can_focus(GtkWidget *widget, gboolean can_focus)
-{
- return gtk_widget_set_can_focus(widget, can_focus);
-}
-
-inline void widget_set_can_default(GtkWidget *widget, gboolean can_default)
-{
- return gtk_widget_set_can_default(widget, can_default);
-}
-
class GtkSalTimer final : public SalTimer
{
struct SalGtkTimeoutSource *m_pTimeout;