Re: [PATCH] fix build: disable -Werror by default (Bug #679130)
- From: Clemens Buchacher <drizzd aon at>
- To: Mathieu Trudel-Lapierre <mathieu tl gmail com>
- Cc: networkmanager-list gnome org
- Subject: Re: [PATCH] fix build: disable -Werror by default (Bug #679130)
- Date: Sat, 3 Nov 2012 12:01:42 +0100
On Fri, Nov 02, 2012 at 07:38:37PM +0100, Mathieu Trudel-Lapierre wrote:
>
> I actually did the porting in Ubuntu. The patch probably doesn't apply
> quite as cleanly on git master; but see the attached file which
> migrates the calls to gtk_table_* to gtk_grid_*.
Applies cleanly on git master. Tested by patching 0.9.6.0. Works fine
also without Dan's patch.
Appending your patch for Dan's reference.
Clemens
From: Mathieu Trudel-Lapierre <mathieu trudel-lapierre canonical com>
Subject: Port GtkTable uses to GtkGrid.
Index: network-manager-pptp/auth-dialog/vpn-password-dialog.c
===================================================================
--- network-manager-pptp.orig/auth-dialog/vpn-password-dialog.c 2012-02-15 11:24:03.803503000 -0500
+++ network-manager-pptp/auth-dialog/vpn-password-dialog.c 2012-02-15 11:30:20.344710680 -0500
@@ -124,8 +124,8 @@
label = gtk_label_new_with_mnemonic (label_text);
gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
- gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, row, row + 1);
- gtk_table_attach_defaults (GTK_TABLE (table), entry, 1, 2, row, row + 1);
+ gtk_grid_attach (GTK_GRID (table), label, 0, row, 1, 1);
+ gtk_grid_attach (GTK_GRID (table), entry, 1, row, 1, 1);
gtk_label_set_mnemonic_widget (GTK_LABEL (label), entry);
}
@@ -154,7 +154,7 @@
if (priv->show_password_secondary)
add_row (priv->table, row++, priv->secondary_password_label, priv->password_entry_secondary);
- gtk_table_attach_defaults (GTK_TABLE (priv->table), priv->show_passwords_checkbox, 1, 2, row, row + 1);
+ gtk_grid_attach (GTK_GRID (priv->table), priv->show_passwords_checkbox, 1, row, 1, 1);
gtk_widget_show_all (priv->table);
}
@@ -228,9 +228,9 @@
priv->group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL);
- priv->table = gtk_table_new (4, 2, FALSE);
- gtk_table_set_col_spacings (GTK_TABLE (priv->table), 12);
- gtk_table_set_row_spacings (GTK_TABLE (priv->table), 6);
+ priv->table = gtk_grid_new ();
+ gtk_grid_set_column_spacing (GTK_GRID (priv->table), 12);
+ gtk_grid_set_row_spacing (GTK_GRID (priv->table), 6);
gtk_container_add (GTK_CONTAINER (priv->table_alignment), priv->table);
priv->password_entry = gtk_entry_new ();
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]