Add VIM modelines to new files
[geeqie.git] / src / filecluster.c
index 36e5b4f..7c5d9d0 100644 (file)
@@ -62,12 +62,14 @@ FileClusterList *fileclusterlist_new()
 {
        FileClusterList *fcl = g_new0(FileClusterList, 1);
        fcl->clusters = g_hash_table_new(&filecluster_fd_hash, &filecluster_fd_equal);
+       return fcl;
 }
 
 FileCluster *filecluster_new()
 {
        FileCluster *fc = g_new0(FileCluster, 1);
        fc->show_children = FALSE;
+       return fc;
 }
 
 void fileclusterlist_free(FileClusterList *fcl)
@@ -193,3 +195,5 @@ GList *fileclusterlist_remove_children_from_list(FileClusterList *fcl, GList *li
 
        return list;
 }
+
+/* vim: set shiftwidth=8 softtabstop=0 cindent cinoptions={1s: */