1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 09:37:56 +00:00

(gtk) silence a compiler warning

This commit is contained in:
Charles Kerr 2008-09-17 01:55:41 +00:00
parent a22bf8c202
commit b3c16b8f52
2 changed files with 1 additions and 2 deletions

View file

@ -1085,7 +1085,6 @@ options_page_new ( TrTorrent * gtor )
uint16_t maxConnectedPeers; uint16_t maxConnectedPeers;
int i, row; int i, row;
gboolean b; gboolean b;
GtkAdjustment *a;
GtkWidget *t, *w, *tb; GtkWidget *t, *w, *tb;
tr_torrent * tor = tr_torrent_handle (gtor); tr_torrent * tor = tr_torrent_handle (gtor);

View file

@ -923,7 +923,7 @@ trackerPage( GObject * core )
w = hig_workarea_add_row( t, &row, s, w, NULL ); w = hig_workarea_add_row( t, &row, s, w, NULL );
page->proxy_widgets = g_slist_append( page->proxy_widgets, w ); page->proxy_widgets = g_slist_append( page->proxy_widgets, w );
w = new_spin_button( PREF_KEY_PROXY_PORT, core, 0, 65536, 1 ); w = new_spin_button( PREF_KEY_PROXY_PORT, core, 0, 65535, 1 );
page->proxy_widgets = g_slist_append( page->proxy_widgets, w ); page->proxy_widgets = g_slist_append( page->proxy_widgets, w );
w = hig_workarea_add_row( t, &row, _( "Proxy _port:" ), w, NULL ); w = hig_workarea_add_row( t, &row, _( "Proxy _port:" ), w, NULL );
page->proxy_widgets = g_slist_append( page->proxy_widgets, w ); page->proxy_widgets = g_slist_append( page->proxy_widgets, w );