]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/mobile/wxedit/wxedit.h
Somebody forgot to restore from testing phase.
[wxWidgets.git] / samples / mobile / wxedit / wxedit.h
index de364747d7fff3f3265b843331e00a0c1da1be61..6bbfb946534bf9cce06981ca4e339572e6443ecb 100644 (file)
@@ -7,10 +7,6 @@
 #ifndef __wxedit_H__
 #define __wxedit_H__
 
-#if defined(__GNUG__) && !defined(__APPLE__)
-    #pragma interface "wxedit.cpp"
-#endif
-
 // Include wxWidgets' headers
 
 #ifndef WX_PRECOMP
@@ -50,15 +46,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 +62,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 +90,8 @@ private:
 class MyApp: public wxApp
 {
 public:
-    MyApp();
-    
+    MyApp(){};
+
     virtual bool OnInit();
     virtual int OnExit();
 };