2007-04-26 Murray Cumming <murrayc@murrayc.com>
authorMurray Cumming <murrayc@murrayc.com>
Thu, 26 Apr 2007 13:45:08 +0000 (13:45 +0000)
committerMurray Cumming <murrayc@murrayc.com>
Thu, 26 Apr 2007 13:45:08 +0000 (13:45 +0000)
* src/modest-mail-operation.c:
        (modest_mail_operation_remove_folder): Intialize the parent variable, to fix the build,
        though I guess it should be something other than NULL.

pmo-trunk-r1679

ChangeLog2
src/modest-mail-operation.c

index ae43b6a..d25c83d 100644 (file)
@@ -1,5 +1,11 @@
 2007-04-26  Murray Cumming  <murrayc@murrayc.com>
 
+       * src/modest-mail-operation.c:
+       (modest_mail_operation_remove_folder): Intialize the parent variable, to fix the build, 
+       though I guess it should be something other than NULL.
+
+2007-04-26  Murray Cumming  <murrayc@murrayc.com>
+
        * src/maemo/easysetup/modest-easysetup-wizard.c:
        (create_page_custom_incoming): Add the checkbox to the caption instead of adding the 
        combo twice, to avoid an g_warning and to make it visible again.
index a9f9e5a..4863f1b 100644 (file)
@@ -525,7 +525,7 @@ modest_mail_operation_remove_folder (ModestMailOperation *self,
                                     TnyFolder           *folder,
                                     gboolean             remove_to_trash)
 {
-       TnyFolderStore *parent;
+       TnyFolderStore *parent = NULL; /* TODO: Should this be set? */
        TnyAccount *account;
        ModestMailOperationPrivate *priv;
        ModestTnyFolderRules rules;