aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/collection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fs/collection.c')
-rw-r--r--src/plugins/fs/collection.c13
1 files changed, 1 insertions, 12 deletions
diff --git a/src/plugins/fs/collection.c b/src/plugins/fs/collection.c
index 712c777d..886ea3c1 100644
--- a/src/plugins/fs/collection.c
+++ b/src/plugins/fs/collection.c
@@ -35,10 +35,6 @@
35 35
36static GladeXML * metaXML; 36static GladeXML * metaXML;
37 37
38static struct GE_Context * ectx;
39
40static struct GC_Configuration * cfg;
41
42void on_collectionDialogMetaDataAddButton_clicked_fs(gpointer dummy, 38void on_collectionDialogMetaDataAddButton_clicked_fs(gpointer dummy,
43 GtkWidget * uploadButton) { 39 GtkWidget * uploadButton) {
44 handleMetaDataListUpdate(metaXML, 40 handleMetaDataListUpdate(metaXML,
@@ -168,12 +164,9 @@ void deleteCollection_clicked_fs(GtkWidget * dummy1,
168 } 164 }
169} 165}
170 166
171void fs_collection_start(struct GE_Context * e, 167void fs_collection_start() {
172 struct GC_Configuration * c) {
173 GtkWidget * w; 168 GtkWidget * w;
174 169
175 ectx = e;
176 cfg = c;
177 if (NULL != CO_getCollection(ectx, 170 if (NULL != CO_getCollection(ectx,
178 cfg)) 171 cfg))
179 w = glade_xml_get_widget(getMainXML(), 172 w = glade_xml_get_widget(getMainXML(),
@@ -184,8 +177,4 @@ void fs_collection_start(struct GE_Context * e,
184 gtk_widget_set_sensitive(w, FALSE); 177 gtk_widget_set_sensitive(w, FALSE);
185} 178}
186 179
187void fs_collection_stop() {
188 /* nothing to do */
189}
190
191/* end of collection.c */ 180/* end of collection.c */