Changeset 2298
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/msgwin.c
r2208 r2298 45 45 get_or_create_tag (GtkTextTagTable * table, const char * key) 46 46 { 47 GtkTextTag * tag; 48 47 49 g_assert (table); 48 50 g_assert (key && *key); 49 51 50 GtkTextTag *tag = gtk_text_tag_table_lookup (table, key);52 tag = gtk_text_tag_table_lookup (table, key); 51 53 if (!tag) { 52 54 tag = gtk_text_tag_new (key); -
trunk/gtk/util.c
r2208 r2298 444 444 } 445 445 446 typedef void (PopupFunc)(GtkWidget*, GdkEventButton*); 447 446 448 /* pop up the context menu if a user right-clicks. 447 449 if the row they right-click on isn't selected, select it. */ 450 448 451 gboolean 449 452 on_tree_view_button_pressed (GtkWidget * view, … … 470 473 } 471 474 472 typedef void (PopupFunc)(GtkWidget*, GdkEventButton*);473 475 ((PopupFunc*)func)(view, event); 474 476
Note: See TracChangeset
for help on using the changeset viewer.