* update for new mu_runtime init stuff

This commit is contained in:
Dirk-Jan C. Binnema
2011-07-23 17:58:40 +03:00
parent a164ad645e
commit 7fef745d17
5 changed files with 8 additions and 7 deletions

View File

@ -369,7 +369,7 @@ main (int argc, char *argv[])
return 1;
}
mu_runtime_init (mugdata.muhome);
mu_runtime_init (mugdata.muhome, "mug");
mugshell = mug_shell (&mugdata);
g_signal_connect (G_OBJECT (mugshell), "destroy",

View File

@ -420,7 +420,7 @@ main (int argc, char *argv[])
}
g_option_context_free (octx);
mu_runtime_init (mugdata.muhome);
mu_runtime_init (mugdata.muhome, "mug2");
mugshell = mug_shell (&mugdata);
g_signal_connect (G_OBJECT (mugshell), "destroy",

View File

@ -97,7 +97,8 @@ main (int argc, char *argv[])
goto error;
}
if (!mu_runtime_init (opts->muhome /* NULL is okay */)) {
if (!mu_runtime_init (opts->muhome /* NULL is okay */,
"muile")) {
usage ();
goto error;
}