From: Carlos Garcia Campos Date: Mon, 31 May 2010 17:31:14 +0000 (+0200) Subject: [toolbar-editor] Fix build with GSEAL enabled X-Git-Tag: EVINCE_2_31_3~11 X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=commitdiff_plain;h=d2ecbc76da7d7c815b857d1aa87d2a4df76aabff;p=evince.git [toolbar-editor] Fix build with GSEAL enabled --- diff --git a/configure.ac b/configure.ac index 8d8b4413..8977b580 100644 --- a/configure.ac +++ b/configure.ac @@ -122,7 +122,7 @@ AM_CONDITIONAL([PLATFORM_HILDON],[test "$with_platform" = "hildon"]) AM_CONDITIONAL([PLATFORM_WIN32],[test "$with_platform" = "win32"]) dnl Specify required versions of dependencies -GTK_REQUIRED=2.21.0 +GTK_REQUIRED=2.21.1 GLIB_REQUIRED=2.25.7 KEYRING_REQUIRED=2.22.0 AC_SUBST([GLIB_REQUIRED]) diff --git a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c index 35a605df..44f03226 100644 --- a/cut-n-paste/toolbar-editor/egg-editable-toolbar.c +++ b/cut-n-paste/toolbar-editor/egg-editable-toolbar.c @@ -694,11 +694,13 @@ toolbar_drag_data_received_cb (GtkToolbar *toolbar, { gint tpos = get_toolbar_position (etoolbar, GTK_WIDGET (toolbar)); egg_toolbars_model_add_item (etoolbar->priv->model, tpos, ipos, name); - gtk_drag_finish (context, TRUE, context->action == GDK_ACTION_MOVE, time); + gtk_drag_finish (context, TRUE, + gdk_drag_context_get_action (context) == GDK_ACTION_MOVE, time); } else { - gtk_drag_finish (context, FALSE, context->action == GDK_ACTION_MOVE, time); + gtk_drag_finish (context, FALSE, + gdk_drag_context_get_action (context) == GDK_ACTION_MOVE, time); } } @@ -757,7 +759,7 @@ toolbar_drag_motion_cb (GtkToolbar *toolbar, etoolbar->priv->dnd_toolitem, ipos); } - gdk_drag_status (context, context->suggested_action, time); + gdk_drag_status (context, gdk_drag_context_get_suggested_action (context), time); return TRUE; }