diff options
| author | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-05 23:32:07 -0400 |
|---|---|---|
| committer | Arnaud Lacombe <lacombar@gmail.com> | 2011-06-06 15:32:22 -0400 |
| commit | f8aea775c1d852c09adee1d0d62a9cab8764e6ea (patch) | |
| tree | 4e3ed6d13eec532bc9b8cf9a2bb77f671bbf93e3 /scripts | |
| parent | 5a6f8d2bd9e3392569ed6f29ea4d7210652f929b (diff) | |
kconfig/gconf: kill deadcode
The only call site of renderer_toggled() has been commented out since Apr. 2003,
as per Linus' Linux history repository:
commit e7f67eb3c0570aa50c1cc0707b478a6d93bdc255
Author: Roman Zippel <zippel@linux-m68k.org>
Date: Fri Apr 4 04:18:05 2003 -0800
[PATCH] gconf update
A gconf update by Romain Li<C3><A9>vin <roms@tilp.info>
- fixed bug when double-clicking for changing value.
- expand row when enabling a row with a submenu.
- various bug fixes
As this result in a warning:
scripts/kconfig/gconf.c:891:13: warning: 'renderer_toggled' defined but not used
just nuke that code.
Signed-off-by: Arnaud Lacombe <lacombar@gmail.com>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/kconfig/gconf.c | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index 9258957a0913..9f4438027df4 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c | |||
| @@ -285,8 +285,6 @@ void init_left_tree(void) | |||
| 285 | static void renderer_edited(GtkCellRendererText * cell, | 285 | static void renderer_edited(GtkCellRendererText * cell, |
| 286 | const gchar * path_string, | 286 | const gchar * path_string, |
| 287 | const gchar * new_text, gpointer user_data); | 287 | const gchar * new_text, gpointer user_data); |
| 288 | static void renderer_toggled(GtkCellRendererToggle * cellrenderertoggle, | ||
| 289 | gchar * arg1, gpointer user_data); | ||
| 290 | 288 | ||
| 291 | void init_right_tree(void) | 289 | void init_right_tree(void) |
| 292 | { | 290 | { |
| @@ -320,8 +318,6 @@ void init_right_tree(void) | |||
| 320 | "inconsistent", COL_BTNINC, | 318 | "inconsistent", COL_BTNINC, |
| 321 | "visible", COL_BTNVIS, | 319 | "visible", COL_BTNVIS, |
| 322 | "radio", COL_BTNRAD, NULL); | 320 | "radio", COL_BTNRAD, NULL); |
| 323 | /*g_signal_connect(G_OBJECT(renderer), "toggled", | ||
| 324 | G_CALLBACK(renderer_toggled), NULL); */ | ||
| 325 | renderer = gtk_cell_renderer_text_new(); | 321 | renderer = gtk_cell_renderer_text_new(); |
| 326 | gtk_tree_view_column_pack_start(GTK_TREE_VIEW_COLUMN(column), | 322 | gtk_tree_view_column_pack_start(GTK_TREE_VIEW_COLUMN(column), |
| 327 | renderer, FALSE); | 323 | renderer, FALSE); |
| @@ -888,35 +884,6 @@ static void toggle_sym_value(struct menu *menu) | |||
| 888 | display_tree_part(); //fixme: keep exp/coll | 884 | display_tree_part(); //fixme: keep exp/coll |
| 889 | } | 885 | } |
| 890 | 886 | ||
| 891 | static void renderer_toggled(GtkCellRendererToggle * cell, | ||
| 892 | gchar * path_string, gpointer user_data) | ||
| 893 | { | ||
| 894 | GtkTreePath *path, *sel_path = NULL; | ||
| 895 | GtkTreeIter iter, sel_iter; | ||
| 896 | GtkTreeSelection *sel; | ||
| 897 | struct menu *menu; | ||
| 898 | |||
| 899 | path = gtk_tree_path_new_from_string(path_string); | ||
| 900 | if (!gtk_tree_model_get_iter(model2, &iter, path)) | ||
| 901 | return; | ||
| 902 | |||
| 903 | sel = gtk_tree_view_get_selection(GTK_TREE_VIEW(tree2_w)); | ||
| 904 | if (gtk_tree_selection_get_selected(sel, NULL, &sel_iter)) | ||
| 905 | sel_path = gtk_tree_model_get_path(model2, &sel_iter); | ||
| 906 | if (!sel_path) | ||
| 907 | goto out1; | ||
| 908 | if (gtk_tree_path_compare(path, sel_path)) | ||
| 909 | goto out2; | ||
| 910 | |||
| 911 | gtk_tree_model_get(model2, &iter, COL_MENU, &menu, -1); | ||
| 912 | toggle_sym_value(menu); | ||
| 913 | |||
| 914 | out2: | ||
| 915 | gtk_tree_path_free(sel_path); | ||
| 916 | out1: | ||
| 917 | gtk_tree_path_free(path); | ||
| 918 | } | ||
| 919 | |||
| 920 | static gint column2index(GtkTreeViewColumn * column) | 887 | static gint column2index(GtkTreeViewColumn * column) |
| 921 | { | 888 | { |
| 922 | gint i; | 889 | gint i; |
