* <many>: make gmime initialization/de-initialization implicit (remove mu_msg_init/mu_msg_uninit)

This commit is contained in:
Dirk-Jan C. Binnema
2010-09-10 08:18:04 +03:00
parent 55981b27df
commit 57fc2441a8
8 changed files with 26 additions and 73 deletions

View File

@ -84,7 +84,6 @@ test_mu_msg_01 (void)
MuMsg *msg;
gint i;
mu_msg_init ();
mfile = get_mailpath (1);
msg = mu_msg_new (mfile, NULL);
@ -113,7 +112,6 @@ test_mu_msg_01 (void)
mu_msg_destroy (msg);
g_free (mfile);
mu_msg_uninit ();
}
@ -150,8 +148,7 @@ test_mu_msg_02 (void)
char *mfile;
MuMsg *msg;
int i;
mu_msg_init ();
mfile = get_mailpath (2);
msg = mu_msg_new (mfile, NULL);
@ -179,7 +176,6 @@ test_mu_msg_02 (void)
mu_msg_destroy (msg);
g_free (mfile);
mu_msg_uninit ();
}