From: <the...@us...> - 2006-10-30 05:09:30
|
Revision: 17628 http://svn.sourceforge.net/gaim/?rev=17628&view=rev Author: thekingant Date: 2006-10-29 21:09:28 -0800 (Sun, 29 Oct 2006) Log Message: ----------- A documentation patch from Eduardo P?\195?\169rez to clean up a little bit of code. Modified Paths: -------------- trunk/gtk/gtkaccount.c Modified: trunk/gtk/gtkaccount.c =================================================================== --- trunk/gtk/gtkaccount.c 2006-10-30 04:45:06 UTC (rev 17627) +++ trunk/gtk/gtkaccount.c 2006-10-30 05:09:28 UTC (rev 17628) @@ -2056,9 +2056,13 @@ /* Create the list model. */ dialog->model = gtk_list_store_new(NUM_COLUMNS, - GDK_TYPE_PIXBUF, G_TYPE_STRING, - G_TYPE_BOOLEAN, G_TYPE_STRING, G_TYPE_POINTER, - G_TYPE_POINTER); + GDK_TYPE_PIXBUF, /* COLUMN_ICON */ + G_TYPE_STRING, /* COLUMN_SCREENNAME */ + G_TYPE_BOOLEAN, /* COLUMN_ENABLED */ + G_TYPE_STRING, /* COLUMN_PROTOCOL */ + G_TYPE_POINTER, /* COLUMN_DATA */ + G_TYPE_POINTER /* COLUMN_PULSE_DATA */ + ); /* And now the actual treeview */ treeview = gtk_tree_view_new_with_model(GTK_TREE_MODEL(dialog->model)); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |