]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/app.h
radiobox now sends notification messages when the selection is changed from
[wxWidgets.git] / include / wx / msw / app.h
index f299a952ea6f0abc6da1c16d459b475f54d02be9..c5cfa879c8eed9705075e27794991fdc7d265986 100644 (file)
@@ -78,7 +78,7 @@ class WXDLLEXPORT wxApp: public wxEvtHandler
   inline void SetExitOnFrameDelete(bool flag) { m_exitOnFrameDelete = flag; }
   inline bool GetExitOnFrameDelete() const { return m_exitOnFrameDelete; }
 
-  inline wxString GetAppName() const {
+  inline const wxString& GetAppName() const {
       if (m_appName != "")
         return m_appName;
       else return m_className;
@@ -144,6 +144,9 @@ public:
   virtual bool ProcessMessage(WXMSG* pMsg);
   void DeletePendingObjects();
   bool ProcessIdle();
+#if wxUSE_THREADS
+  void ProcessPendingEvents();
+#endif
   int GetComCtl32Version() const;
 
 public: