]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/app.h
don't duplicate base class m_acceleratorTable as m_accelTable in wxMenuBar, this...
[wxWidgets.git] / include / wx / app.h
index ef542febc3825c17ff2b6910f23a325fc9c722cc..ccba2765a0342b47883670d0ba204bff57330112 100644 (file)
@@ -131,8 +131,10 @@ public:
         // so the app name could be myapp while display name could be "My App"
     wxString GetAppDisplayName() const
     {
-        return m_appDisplayName.empty() ? GetAppName() : m_appDisplayName;
+        return m_appDisplayName.empty() ? GetAppName().Capitalize()
+                                        : m_appDisplayName;
     }
+
     void SetAppDisplayName(const wxString& name) { m_appDisplayName = name; }
 
         // set/get the app class name