diff options
author | Xan Lopez <xlopez@igalia.com> | 2011-04-20 16:14:05 +0800 |
---|---|---|
committer | Xan Lopez <xlopez@igalia.com> | 2011-04-21 01:51:46 +0800 |
commit | 85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5 (patch) | |
tree | d42a54e25eda179c70d46f2b376b67f1d2d1b929 /src/prefs-dialog.c | |
parent | a78edd0144a01081ac254b40228c1b7c488df711 (diff) | |
download | gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar.gz gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar.bz2 gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar.lz gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar.xz gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.tar.zst gsoc2013-epiphany-85e3c2e1129a1d0d3d5dd0c1bdab883ea7b027b5.zip |
Remove a few GCC 4.6.0 warnings
Diffstat (limited to 'src/prefs-dialog.c')
-rw-r--r-- | src/prefs-dialog.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index 296c6b18c..8c0cd31e3 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -223,7 +223,7 @@ create_node_combo (EphyDialog *dialog, GtkComboBox *combo; GtkCellRenderer *renderer; char *code; - int title_col, data_col; + int title_col; code = g_settings_get_string (EPHY_SETTINGS_WEB, EPHY_PREFS_WEB_DEFAULT_ENCODING); @@ -243,8 +243,6 @@ create_node_combo (EphyDialog *dialog, title_col = ephy_tree_model_node_add_prop_column (nodemodel, G_TYPE_STRING, EPHY_NODE_ENCODING_PROP_TITLE_ELIDED); - data_col = ephy_tree_model_node_add_prop_column - (nodemodel, G_TYPE_STRING, EPHY_NODE_ENCODING_PROP_ENCODING); sortmodel = ephy_tree_model_sort_new (GTK_TREE_MODEL (nodemodel)); |