Changeset 8724
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/msgwin.c
r7658 r8724 460 460 461 461 toolbar = gtk_toolbar_new( ); 462 gtk_toolbar_set_orientation( GTK_TOOLBAR( 463 toolbar ), GTK_ORIENTATION_HORIZONTAL ); 462 gtr_toolbar_set_orientation( GTK_TOOLBAR( toolbar ), GTK_ORIENTATION_HORIZONTAL ); 464 463 gtk_toolbar_set_style( GTK_TOOLBAR( toolbar ), GTK_TOOLBAR_BOTH_HORIZ ); 465 464 -
trunk/gtk/tr-icon.c
r7658 r8724 71 71 stats.downloadCount, 72 72 downStr, upStr ); 73 #if GTK_CHECK_VERSION( 2,16,0 ) 74 gtk_status_icon_set_tooltip_text( GTK_STATUS_ICON( icon ), tip ); 75 #else 73 76 gtk_status_icon_set_tooltip( GTK_STATUS_ICON( icon ), tip ); 77 #endif 74 78 75 79 return TRUE; -
trunk/gtk/util.c
r8669 r8724 690 690 #endif 691 691 } 692 693 void 694 gtr_toolbar_set_orientation( GtkToolbar * toolbar, 695 GtkOrientation orientation ) 696 { 697 #if GTK_CHECK_VERSION( 2,16,0 ) 698 gtk_orientable_set_orientation( GTK_ORIENTABLE( toolbar ), orientation ); 699 #else 700 gtk_toolbar_set_orientation( toolbar, orientation ); 701 #endif 702 } -
trunk/gtk/util.h
r8389 r8724 95 95 #ifdef GTK_MAJOR_VERSION 96 96 97 void gtr_toolbar_set_orientation( GtkToolbar * toolbar, 98 GtkOrientation orientation ); 99 97 100 void gtr_widget_set_tooltip_text( GtkWidget * w, const char * tip ); 98 101
Note: See TracChangeset
for help on using the changeset viewer.