core: fix translations - use NULL instead of "" (else odd translation appears)

This commit is contained in:
Jiří Klimeš 2012-01-17 16:18:43 +01:00
parent 3b00919b7a
commit 87a2030a43

View file

@ -395,7 +395,7 @@ main (int argc, char *argv[])
textdomain (GETTEXT_PACKAGE);
/* Parse options */
opt_ctx = g_option_context_new ("");
opt_ctx = g_option_context_new (NULL);
g_option_context_set_translation_domain (opt_ctx, GETTEXT_PACKAGE);
g_option_context_set_ignore_unknown_options (opt_ctx, FALSE);
g_option_context_set_help_enabled (opt_ctx, TRUE);