summaryrefslogtreecommitdiff
path: root/plugins/checkupdate/pluma-check-update-plugin.c
diff options
context:
space:
mode:
authorinfirit <[email protected]>2014-05-19 14:52:18 +0200
committerinfirit <[email protected]>2014-05-19 18:37:37 +0200
commit51291bf1b29004ea4703845fc127cc1a4468b092 (patch)
treea6280641c96a58b9872e6c4e7835d5dd313667ca /plugins/checkupdate/pluma-check-update-plugin.c
parent53be5f994d2c52142debdfdaf089ae077389cfbd (diff)
downloadpluma-51291bf1b29004ea4703845fc127cc1a4468b092.tar.bz2
pluma-51291bf1b29004ea4703845fc127cc1a4468b092.tar.xz
Replace deprecated gtk widget function
The replacement functions are available since 2.18 GTK_WIDGET_HAS_FOCUS -> gtk_widget_has_focus GTK_WIDGET_VISIBLE -> gtk_widget_get_visible GTK_WIDGET_SET_FLAGS -> gtk_widget_set_*
Diffstat (limited to 'plugins/checkupdate/pluma-check-update-plugin.c')
-rw-r--r--plugins/checkupdate/pluma-check-update-plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/checkupdate/pluma-check-update-plugin.c b/plugins/checkupdate/pluma-check-update-plugin.c
index b28991af..42cd2b41 100644
--- a/plugins/checkupdate/pluma-check-update-plugin.c
+++ b/plugins/checkupdate/pluma-check-update-plugin.c
@@ -186,7 +186,7 @@ set_message_area_text_and_icon (GtkWidget *message_area,
gtk_label_set_use_markup (GTK_LABEL (primary_label), TRUE);
gtk_label_set_line_wrap (GTK_LABEL (primary_label), TRUE);
gtk_misc_set_alignment (GTK_MISC (primary_label), 0, 0.5);
- GTK_WIDGET_SET_FLAGS (primary_label, GTK_CAN_FOCUS);
+ gtk_widget_set_can_focus (primary_label, TRUE);
gtk_label_set_selectable (GTK_LABEL (primary_label), TRUE);
if (secondary_text != NULL)
@@ -197,7 +197,7 @@ set_message_area_text_and_icon (GtkWidget *message_area,
g_free (secondary_markup);
gtk_widget_show (secondary_label);
gtk_box_pack_start (GTK_BOX (vbox), secondary_label, TRUE, TRUE, 0);
- GTK_WIDGET_SET_FLAGS (secondary_label, GTK_CAN_FOCUS);
+ gtk_widget_set_can_focus (secondary_label, TRUE);
gtk_label_set_use_markup (GTK_LABEL (secondary_label), TRUE);
gtk_label_set_line_wrap (GTK_LABEL (secondary_label), TRUE);
gtk_label_set_selectable (GTK_LABEL (secondary_label), TRUE);