* <many> WIP: refactor mu-msg -- mu-msg-file

This commit is contained in:
Dirk-Jan C. Binnema
2011-05-09 02:58:33 +03:00
parent 3223892e24
commit 53b87a79eb
24 changed files with 1138 additions and 914 deletions

View File

@ -190,7 +190,7 @@ save_parts (const char *path, MuConfig *opts)
GError *err;
err = NULL;
msg = mu_msg_new (path, NULL, &err);
msg = mu_msg_new_from_file (path, NULL, &err);
if (!msg) {
g_warning ("error: %s", err->message);
g_error_free (err);
@ -239,7 +239,7 @@ show_parts (const char* path, MuConfig *opts)
GError *err;
err = NULL;
msg = mu_msg_new (path, NULL, &err);
msg = mu_msg_new_from_file (path, NULL, &err);
if (!msg) {
g_warning ("error: %s", err->message);
g_error_free (err);