* some mu_store_store => mu_store_store_msg and the consequences

This commit is contained in:
Dirk-Jan C. Binnema
2011-08-03 23:03:22 +03:00
parent 82be4974b7
commit d291c5a9f5
5 changed files with 18 additions and 18 deletions

View File

@ -623,7 +623,7 @@ get_message_uid (MuMsg *msg)
}
gboolean
mu_store_store (MuStore *store, MuMsg *msg, gboolean replace)
mu_store_store_msg (MuStore *store, MuMsg *msg, gboolean replace)
{
g_return_val_if_fail (store, FALSE);
g_return_val_if_fail (msg, FALSE);
@ -693,7 +693,7 @@ mu_store_store_path (MuStore *store, const char *path)
return FALSE;
}
rv = mu_store_store (store, msg, TRUE);
rv = mu_store_store_msg (store, msg, TRUE);
if (!rv)
g_warning ("failed to store %s", path);
@ -704,7 +704,7 @@ mu_store_store_path (MuStore *store, const char *path)
gboolean
mu_store_remove (MuStore *store, const char *msgpath)
mu_store_remove_path (MuStore *store, const char *msgpath)
{
g_return_val_if_fail (store, FALSE);
g_return_val_if_fail (msgpath, FALSE);