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:
parent
a22bf8c202
commit
b3c16b8f52
2 changed files with 1 additions and 2 deletions
|
@ -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);
|
||||||
|
|
||||||
|
|
|
@ -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 );
|
||||||
|
|
Loading…
Reference in a new issue