]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/mobile/wxedit/wxedit.h
added wxChoice:: and wxCombobox::GetCurrentSelection()
[wxWidgets.git] / samples / mobile / wxedit / wxedit.h
index de364747d7fff3f3265b843331e00a0c1da1be61..66b1d41d2ec893dfb3ad1796ed08793fd627c6b3 100644 (file)
@@ -8,7 +8,7 @@
 #define __wxedit_H__
 
 #if defined(__GNUG__) && !defined(__APPLE__)
-    #pragma interface "wxedit.cpp"
+    #pragma interface "wxedit.h"
 #endif
 
 // Include wxWidgets' headers
@@ -50,15 +50,15 @@ public:
         const wxPoint& pos = wxDefaultPosition,
         const wxSize& size = wxDefaultSize,
         long style = wxDEFAULT_FRAME_STYLE );
-    
+
 private:
     void CreateMyMenuBar();
-    
+
 private:
     wxTextCtrl     *m_text;
     wxString        m_filename;
     wxArrayString   m_history;
-    
+
 private:
     void OnAbout( wxCommandEvent &event );
     void OnNew( wxCommandEvent &event );
@@ -66,23 +66,23 @@ private:
     void OnSave( wxCommandEvent &event );
     void OnSaveAs( wxCommandEvent &event );
     void OnQuit( wxCommandEvent &event );
-    
+
     void OnCopy( wxCommandEvent &event );
     void OnCut( wxCommandEvent &event );
     void OnPaste( wxCommandEvent &event );
     void OnDelete( wxCommandEvent &event );
-    
+
     void OnLastFiles( wxCommandEvent &event );
-    
+
     void MakeHistory();
     void AddToHistory( const wxString &fname );
-    
+
     bool Save();
     bool Discard();
-    
+
     void OnUpdateUI( wxUpdateUIEvent &event );
     void OnCloseWindow( wxCloseEvent &event );
-    
+
 private:
     DECLARE_EVENT_TABLE()
 };
@@ -94,8 +94,8 @@ private:
 class MyApp: public wxApp
 {
 public:
-    MyApp();
-    
+    MyApp(){};
+
     virtual bool OnInit();
     virtual int OnExit();
 };