From d514eeac1e7c7e6b1c4ed7864ab2636894153c81 Mon Sep 17 00:00:00 2001 From: Massimo Gengarelli Date: Sun, 30 Jan 2011 16:50:13 +0100 Subject: [PATCH] [main] inverted help/version messages --- SparkleShare/SparkleShare.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SparkleShare/SparkleShare.cs b/SparkleShare/SparkleShare.cs index 5e707832..8aa9cbe8 100644 --- a/SparkleShare/SparkleShare.cs +++ b/SparkleShare/SparkleShare.cs @@ -65,8 +65,8 @@ namespace SparkleShare { var p = new OptionSet () { { "d|disable-gui", _("Don't show the notification icon"), v => hide_ui = v != null }, - { "v|version", _("Show this help text"), v => { PrintVersion (); } }, - { "h|help", _("Print version information"), v => show_help = v != null } + { "v|version", _("Print version information"), v => { PrintVersion (); } }, + { "h|help", _("Show this help text"), v => show_help = v != null } }; try {