]> code.citadel.org Git - citadel.git/blobdiff - webcit/calendar.c
* we mustn't dump content here... todo: find a better way here.
[citadel.git] / webcit / calendar.c
index 70fddf490e9f21fc87b4ccd5fe2a081b32fb52d1..ad0cd435c6da5a655ab3431dc726d7559475bdaa 100644 (file)
@@ -864,6 +864,18 @@ int calendar_Cleanup(void **ViewSpecific)
        return 0;
 }
 
+int __calendar_Cleanup(void **ViewSpecific)
+{
+       calview *c;
+       
+       c = (calview *) *ViewSpecific;
+
+       free (c);
+       *ViewSpecific = NULL;
+
+       return 0;
+}
+
 
 void 
 InitModule_CALENDAR