aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/expert_comp_table.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2007-12-04 07:53:23 +0000
committerGuy Harris <guy@alum.mit.edu>2007-12-04 07:53:23 +0000
commita8ce49d758c236c7717e3829155b28e8c8578112 (patch)
treeb15eb50bb5bd10d73df4096f972e4c5bff63a3cf /gtk/expert_comp_table.c
parent353d921d66a14d95e6cd99a9816a0632fb2b736a (diff)
More whitespace cleanup.
svn path=/trunk/; revision=23746
Diffstat (limited to 'gtk/expert_comp_table.c')
-rw-r--r--gtk/expert_comp_table.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/gtk/expert_comp_table.c b/gtk/expert_comp_table.c
index e361ae4510..dd3bfe9490 100644
--- a/gtk/expert_comp_table.c
+++ b/gtk/expert_comp_table.c
@@ -243,7 +243,7 @@ error_select_filter_cb(GtkWidget *widget _U_, gpointer callback_data, guint call
#if (GTK_MAJOR_VERSION < 2)
- selection=GPOINTER_TO_INT(g_list_nth_data(GTK_CLIST(err->table)->selection, 0));
+ selection=GPOINTER_TO_INT(g_list_nth_data(GTK_CLIST(err->table)->selection, 0));
#else
gtk_tree_selection_get_selected(err->select, &model, &iter);
@@ -401,7 +401,6 @@ error_select_filter_cb(GtkWidget *widget _U_, gpointer callback_data, guint call
default:
simple_dialog(ESD_TYPE_ERROR, ESD_BTN_OK, "Can't find menu action - %u", action);
}
-
}
static gint
@@ -513,7 +512,7 @@ expert_goto_pkt_cb (GtkTreeSelection *selection, gpointer data _U_)
static void
error_create_popup_menu(error_equiv_table *err)
{
- GtkItemFactory *item_factory;
+ GtkItemFactory *item_factory;
#if (GTK_MAJOR_VERSION >= 2)
@@ -523,15 +522,15 @@ error_create_popup_menu(error_equiv_table *err)
G_CALLBACK (expert_goto_pkt_cb),
err);
#endif
- item_factory = gtk_item_factory_new(GTK_TYPE_MENU, "<main>", NULL);
+ item_factory = gtk_item_factory_new(GTK_TYPE_MENU, "<main>", NULL);
- gtk_item_factory_create_items_ac(item_factory, sizeof(error_list_menu_items)/sizeof(error_list_menu_items[0]), error_list_menu_items, err, 2);
+ gtk_item_factory_create_items_ac(item_factory, sizeof(error_list_menu_items)/sizeof(error_list_menu_items[0]), error_list_menu_items, err, 2);
- err->menu = gtk_item_factory_get_widget(item_factory, "<main>");
+ err->menu = gtk_item_factory_get_widget(item_factory, "<main>");
#if (GTK_MAJOR_VERSION >= 2)
- SIGNAL_CONNECT(err->tree_view, "button_press_event", error_show_popup_menu_cb, err);
+ SIGNAL_CONNECT(err->tree_view, "button_press_event", error_show_popup_menu_cb, err);
#else
- SIGNAL_CONNECT(err->table, "button_press_event", error_show_popup_menu_cb, err);
+ SIGNAL_CONNECT(err->table, "button_press_event", error_show_popup_menu_cb, err);
#endif
}