(trunk gtk) the row and col arguments passed to gtk_table_attach() should be guint. we were using "int" in several places.

This commit is contained in:
Jordan Lee
2011-08-13 21:08:53 +00:00
parent c00b97169c
commit b5de483362
8 changed files with 69 additions and 87 deletions

View File

@@ -414,10 +414,10 @@ on_drag_data_received( GtkWidget * widget UNUSED,
GtkWidget*
gtr_torrent_creation_dialog_new( GtkWindow * parent, TrCore * core )
{
int row = 0;
const char * str;
GtkWidget * d, *t, *w, *l, *fr, *sw, *v;
GSList * slist;
guint row = 0;
MakeMetaUI * ui = g_new0 ( MakeMetaUI, 1 );
ui->core = core;