From 37e590249dd9d191a2331040fb879830c9ceea8e Mon Sep 17 00:00:00 2001 From: Wolfgang Ulbrich Date: Wed, 27 Jan 2016 18:14:37 +0100 Subject: GTK3: fix previous GtkMisc deprecations fix commit --- charpick/properties.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'charpick') diff --git a/charpick/properties.c b/charpick/properties.c index 2252131d..ac41ebd9 100644 --- a/charpick/properties.c +++ b/charpick/properties.c @@ -420,8 +420,8 @@ create_hig_catagory (GtkWidget *main_box, gchar *title) tmp = g_strdup_printf ("%s", title); label = gtk_label_new (NULL); -#if GTK_CHECK_VERSION (3, 0, 0) - gtk_widget_set_halign (label, GTK_ALIGN_START); +#if GTK_CHECK_VERSION (3, 16, 0) + gtk_label_set_xalign (GTK_LABEL (label), 0.0); #else gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); #endif @@ -464,8 +464,8 @@ static void default_chars_frame_create(charpick_data *curr_data) label = gtk_label_new_with_mnemonic(_("_Palettes:")); gtk_box_pack_start(GTK_BOX(vbox3), label, FALSE, FALSE, 0); -#if GTK_CHECK_VERSION (3, 0, 0) - gtk_widget_set_halign (label, GTK_ALIGN_START); +#if GTK_CHECK_VERSION (3, 16, 0) + gtk_label_set_xalign (GTK_LABEL (label), 0.0); #else gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); #endif -- cgit v1.2.1