diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-05-19 16:20:36 +0800 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2010-05-19 16:26:08 +0800 |
commit | 38711248e319902e7396e41e1c64c732b1645bec (patch) | |
tree | a89e197ac49b0ec5396d29b1de2501c722ab0113 /shell/main.c | |
parent | b995d99498160db3006cb4288b5048f3396d1d88 (diff) | |
download | gsoc2013-evolution-38711248e319902e7396e41e1c64c732b1645bec.tar.gz gsoc2013-evolution-38711248e319902e7396e41e1c64c732b1645bec.tar.zst gsoc2013-evolution-38711248e319902e7396e41e1c64c732b1645bec.zip |
[win32] Try to get the default application registration right
Diffstat (limited to 'shell/main.c')
-rw-r--r-- | shell/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/shell/main.c b/shell/main.c index 0ee9478858..41ca79eac8 100644 --- a/shell/main.c +++ b/shell/main.c @@ -327,11 +327,11 @@ setup_segv_redirect (void) static GOptionEntry entries[] = { #ifdef G_OS_WIN32 - { "--reinstall", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &reinstall, + { "reinstall", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &reinstall, NULL, NULL }, - { "--show-icons", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &show_icons, + { "show-icons", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &show_icons, NULL, NULL }, - { "--hide-icons", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &hide_icons, + { "hide-icons", '\0', G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &hide_icons, NULL, NULL }, #endif /* G_OS_WIN32 */ { "component", 'c', 0, G_OPTION_ARG_STRING, &requested_view, |