summaryrefslogtreecommitdiff
path: root/capplets/about-me
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-05-27 16:30:06 +0200
committerinfirit <[email protected]>2014-05-27 16:30:06 +0200
commit469b3c47fce9ea13e50a4448064f97cf297452f8 (patch)
tree64f7c20f6b55b3e3811103c7571292194864eb7f /capplets/about-me
parent13d0f05fb98284839d1dea3fc667903c8a82a40b (diff)
downloadmate-control-center-469b3c47fce9ea13e50a4448064f97cf297452f8.tar.bz2
mate-control-center-469b3c47fce9ea13e50a4448064f97cf297452f8.tar.xz
Cleanup GTK_CHECK_VERSION and unify where possible
gdk_display_get_default | since 2.2 gdk_x11_display_get_xdisplay | since 2.2 gdk_drag_context_list_targets | since 2.22 gdk_x11_window_foreign_new_for_display | since 2.24 gdk_drawable_get_screen | since 2.24 gtk_widget_hide | always
Diffstat (limited to 'capplets/about-me')
-rw-r--r--capplets/about-me/e-image-chooser.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/capplets/about-me/e-image-chooser.c b/capplets/about-me/e-image-chooser.c
index c9f35fc2..8a404ee8 100644
--- a/capplets/about-me/e-image-chooser.c
+++ b/capplets/about-me/e-image-chooser.c
@@ -281,11 +281,7 @@ image_drag_motion_cb (GtkWidget *widget,
if (!chooser->priv->editable)
return FALSE;
-#if GTK_CHECK_VERSION (3, 0, 0)
for (p = gdk_drag_context_list_targets (context); p; p = p->next) {
-#else
- for (p = context->targets; p != NULL; p = p->next) {
-#endif
char *possible_type;
possible_type = gdk_atom_name (GDK_POINTER_TO_ATOM (p->data));
@@ -311,19 +307,11 @@ image_drag_drop_cb (GtkWidget *widget,
if (!chooser->priv->editable)
return FALSE;
-#if GTK_CHECK_VERSION (3, 0, 0)
if (gdk_drag_context_list_targets (context) == NULL) {
-#else
- if (context->targets == NULL) {
-#endif
return FALSE;
}
-#if GTK_CHECK_VERSION (3, 0, 0)
for (p = gdk_drag_context_list_targets (context); p; p = p->next) {
-#else
- for (p = context->targets; p != NULL; p = p->next) {
-#endif
char *possible_type;
possible_type = gdk_atom_name (GDK_POINTER_TO_ATOM (p->data));