* Use wDumpContent() instead of end_burst() where appropriate
authorArt Cancro <ajc@citadel.org>
Sun, 20 Sep 2009 03:26:07 +0000 (03:26 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 20 Sep 2009 03:26:07 +0000 (03:26 +0000)
webcit/notes.c
webcit/tasks.c
webcit/vcard_edit.c

index fe75c32b50da145ac2fe9cce759e6278e1d56a12..13e03723a86e54a67c2180233e6cbe7987fb5fec 100644 (file)
@@ -433,7 +433,7 @@ int notes_GetParamsGetServerCall(SharedMessageStatus *Stat,
 
 int notes_Cleanup(void **ViewSpecific)
 {
-       end_burst();
+       wDumpContent(1);
        return 0;
 }
 
index fecdb67cf7f44e55251609032114f9a9f0ef0de6..c2f4b827864e85038c7922b402aa753e20823268 100644 (file)
@@ -653,7 +653,7 @@ int tasks_GetParamsGetServerCall(SharedMessageStatus *Stat,
 
 int tasks_Cleanup(void **ViewSpecific)
 {
-       end_burst();
+       wDumpContent(1);
 /* Tasks doesn't need the calview struct... 
        free (*ViewSpecific);
        *ViewSpecific = NULL;
index 248881d11b84f07ce25d1b3f9ac826b83b57594d..2897424b0723f6f7d1968040ebaca262328747a7 100644 (file)
@@ -1318,7 +1318,7 @@ int vcard_Cleanup(void **ViewSpecific)
        vcardview_struct *VS;
 
        VS = (vcardview_struct*) *ViewSpecific;
-       end_burst();
+       wDumpContent(1);
        if ((VS != NULL) && 
            (VS->addrbook != NULL))
                free(VS->addrbook);