summaryrefslogtreecommitdiff
path: root/gtk/gtkfilesystemmodel.c
diff options
context:
space:
mode:
authorFederico Mena Quintero <federico@novell.com>2009-08-26 19:27:40 -0500
committerBenjamin Otte <otte@gnome.org>2009-10-15 22:06:14 +0200
commit93588c6d5c8746fab2a1b51b5311a1785e0e8ed3 (patch)
treec69d2c41c7e8b2c1260cfad82a5bff28a3b31cc7 /gtk/gtkfilesystemmodel.c
parent88bb9342ab20a54272140ce3a461aa86df22f108 (diff)
downloadgtk+-93588c6d5c8746fab2a1b51b5311a1785e0e8ed3.tar.gz
Clarify the comments that some fields in GtkFileSystemModel can be NULL
Signed-off-by: Federico Mena Quintero <federico@novell.com>
Diffstat (limited to 'gtk/gtkfilesystemmodel.c')
-rw-r--r--gtk/gtkfilesystemmodel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtkfilesystemmodel.c b/gtk/gtkfilesystemmodel.c
index dfc20dfa59..c4b91ecbf3 100644
--- a/gtk/gtkfilesystemmodel.c
+++ b/gtk/gtkfilesystemmodel.c
@@ -65,8 +65,8 @@ struct _GtkFileSystemModel
GFile * dir; /* directory that's displayed */
guint dir_thaw_source;/* GSource id for unfreezing the model */
- char * attributes; /* attributes the file info must contain */
- GFileMonitor * dir_monitor; /* directory that is monitored */
+ char * attributes; /* attributes the file info must contain, or NULL for all attributes */
+ GFileMonitor * dir_monitor; /* directory that is monitored, or NULL if monitoring was not supported */
GCancellable * cancellable; /* cancellable in use for all operations - cancelled on dispose */
GArray * files; /* array of FileModelNode containing all our files */