]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/console/console.cpp
Fix WXK_MENU handling in wxStyledTextCtrl.
[wxWidgets.git] / samples / console / console.cpp
index 9a4f4a3b2c0ccec8890f7c187154b276005ee542..fa356714adb5c0d858c2ea5082421ec2e9c7cc0a 100644 (file)
@@ -6,7 +6,7 @@
 // Created:     04.10.99
 // RCS-ID:      $Id$
 // Copyright:   (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
-// Licence:     wxWindows license
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // ============================================================================
@@ -103,6 +103,14 @@ int main(int argc, char **argv)
             break;
     }
 
+    if ( argc == 1 )
+    {
+        // If there were no command-line options supplied, emit a message
+        // otherwise it's not obvious that the sample ran successfully
+        wxPrintf("Welcome to the wxWidgets 'console' sample!\n");
+        wxPrintf("For more information, run it again with the --help option\n");
+    }
+
     // do something useful here
 
     return 0;