]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/mobile/wxedit/wxedit.h
Unicode fixes, wxWidgets coding standards, source cleaning for wxFoldBar samples.
[wxWidgets.git] / samples / mobile / wxedit / wxedit.h
index de364747d7fff3f3265b843331e00a0c1da1be61..6b412e61dd1c2c8c715a2ad1f693d67d09eb3e5c 100644 (file)
@@ -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();
 };