Added some comments

This commit is contained in:
Pierre Pronchery 2014-06-29 16:57:55 +02:00
parent 33e6261116
commit 64ce6dcf52

View File

@ -829,11 +829,9 @@ static GtkWidget * _preferences_window_applets(Panel * panel)
static GtkListStore * _preferences_window_applets_model(void)
{
GtkListStore * store;
store = gtk_list_store_new(3, G_TYPE_STRING, GDK_TYPE_PIXBUF,
G_TYPE_STRING);
return store;
return gtk_list_store_new(3, G_TYPE_STRING, /* name */
GDK_TYPE_PIXBUF, /* icon */
G_TYPE_STRING); /* full name */
}
static GtkWidget * _preferences_window_applets_view(GtkListStore * store,