Changeset 11802
Legend:
- Unmodified
- Added
- Removed
-
trunk/gtk/main.c
r11770 r11802 1201 1201 1202 1202 /* clear the UI */ 1203 gtk_list_store_clear( GTK_LIST_STORE( tr_core_model( cbdata->core ) ));1203 tr_core_clear( cbdata->core ); 1204 1204 1205 1205 /* ensure the window is in its previous position & size. -
trunk/gtk/tr-core.c
r11799 r11802 930 930 } 931 931 932 void 933 tr_core_clear( TrCore * self ) 934 { 935 gtk_list_store_clear( GTK_LIST_STORE( tr_core_raw_model( self ) ) ); 936 } 937 932 938 /*** 933 939 **** -
trunk/gtk/tr-core.h
r11740 r11802 80 80 /* Return the model used without incrementing the reference count */ 81 81 GtkTreeModel * tr_core_model( TrCore * self ); 82 83 void tr_core_clear( TrCore * self ); 82 84 83 85 tr_session * tr_core_session( TrCore * self );
Note: See TracChangeset
for help on using the changeset viewer.