From dfbfdbc81b3f523eb16f87f42e65cba8891e2210 Mon Sep 17 00:00:00 2001 From: Jordan Lee Date: Sat, 14 Jul 2012 22:41:33 +0000 Subject: [PATCH] (trunk, gtk) remove the pointless TrWindow typedef --- gtk/main.c | 10 +++++----- gtk/tr-window.c | 10 +++++----- gtk/tr-window.h | 8 +++----- 3 files changed, 13 insertions(+), 15 deletions(-) diff --git a/gtk/main.c b/gtk/main.c index dea165383..a12e78633 100644 --- a/gtk/main.c +++ b/gtk/main.c @@ -476,7 +476,7 @@ signal_handler( int sig ) ***** ****/ -static void app_setup( TrWindow * wind, struct cbdata * cbdata ); +static void app_setup( GtkWindow * wind, struct cbdata * cbdata ); static void on_startup( GApplication * application, gpointer user_data ) @@ -669,12 +669,12 @@ on_core_busy( TrCore * core UNUSED, gboolean busy, struct cbdata * c ) static void on_core_error( TrCore *, guint, const char *, struct cbdata * ); static void on_add_torrent( TrCore *, tr_ctor *, gpointer ); static void on_prefs_changed( TrCore * core, const char * key, gpointer ); -static void main_window_setup( struct cbdata * cbdata, TrWindow * wind ); +static void main_window_setup( struct cbdata * cbdata, GtkWindow * wind ); static gboolean update_model_loop( gpointer gdata ); static gboolean update_model_once( gpointer gdata ); static void -app_setup( TrWindow * wind, struct cbdata * cbdata ) +app_setup( GtkWindow * wind, struct cbdata * cbdata ) { if( cbdata->is_iconified ) gtr_pref_flag_set( PREF_KEY_SHOW_TRAY_ICON, TRUE ); @@ -834,14 +834,14 @@ on_drag_data_received( GtkWidget * widget UNUSED, } static void -main_window_setup( struct cbdata * cbdata, TrWindow * wind ) +main_window_setup( struct cbdata * cbdata, GtkWindow * wind ) { GtkWidget * w; GtkTreeModel * model; GtkTreeSelection * sel; g_assert( NULL == cbdata->wind ); - cbdata->wind = GTK_WINDOW( wind ); + cbdata->wind = wind; cbdata->sel = sel = GTK_TREE_SELECTION( gtr_window_get_selection( cbdata->wind ) ); g_signal_connect( sel, "changed", G_CALLBACK( on_selection_changed ), cbdata ); diff --git a/gtk/tr-window.c b/gtk/tr-window.c index ea67b4b0d..6b8fe8226 100644 --- a/gtk/tr-window.c +++ b/gtk/tr-window.c @@ -76,7 +76,7 @@ get_private_data_key( void ) } static PrivateData* -get_private_data( TrWindow * w ) +get_private_data( GtkWindow * w ) { return g_object_get_qdata ( G_OBJECT( w ), get_private_data_key( ) ); } @@ -215,7 +215,7 @@ prefsChanged( TrCore * core UNUSED, } else if( !strcmp( key, PREF_KEY_STATUSBAR_STATS ) ) { - gtr_window_refresh( (TrWindow*)wind ); + gtr_window_refresh( wind ); } else if( !strcmp( key, TR_PREFS_KEY_ALT_SPEED_ENABLED ) || !strcmp( key, TR_PREFS_KEY_ALT_SPEED_UP_KBps ) || @@ -859,7 +859,7 @@ updateSpeeds( PrivateData * p ) } void -gtr_window_refresh( TrWindow * self ) +gtr_window_refresh( GtkWindow * self ) { PrivateData * p = get_private_data( self ); @@ -872,13 +872,13 @@ gtr_window_refresh( TrWindow * self ) } GtkTreeSelection* -gtr_window_get_selection( TrWindow * w ) +gtr_window_get_selection( GtkWindow * w ) { return get_private_data( w )->selection; } void -gtr_window_set_busy( TrWindow * w, gboolean isBusy ) +gtr_window_set_busy( GtkWindow * w, gboolean isBusy ) { if( w && gtk_widget_get_realized( GTK_WIDGET( w ) ) ) { diff --git a/gtk/tr-window.h b/gtk/tr-window.h index 44fb83c0a..7e1a404ed 100644 --- a/gtk/tr-window.h +++ b/gtk/tr-window.h @@ -28,11 +28,9 @@ #include #include "tr-core.h" -typedef GtkWindow TrWindow; - GtkWidget * gtr_window_new( GtkUIManager * uim, TrCore * core ); -GtkTreeSelection * gtr_window_get_selection( TrWindow * ); -void gtr_window_set_busy( TrWindow *, gboolean isBusy ); -void gtr_window_refresh( TrWindow * ); +GtkTreeSelection * gtr_window_get_selection( GtkWindow * ); +void gtr_window_set_busy( GtkWindow *, gboolean isBusy ); +void gtr_window_refresh( GtkWindow * ); #endif /* GTR_WINDOW_H */