]> git.saurik.com Git - wxWidgets.git/blobdiff - samples/minimal/minimal.cpp
Fixed XIM compilation, but doesn't work yet.
[wxWidgets.git] / samples / minimal / minimal.cpp
index 93536a6b4dcf564a33e78be1648e49a4ec83c183..a66bb77444afeea33784f2f8da393572ad181558 100644 (file)
@@ -70,8 +70,6 @@ public:
     void OnQuit(wxCommandEvent& event);
     void OnAbout(wxCommandEvent& event);
 
-    void OnPaint(wxPaintEvent& event);
-
 private:
     // any class wishing to process wxWindows events must use this macro
     DECLARE_EVENT_TABLE()
@@ -86,7 +84,7 @@ enum
 {
     // menu items
     Minimal_Quit = 1,
-    Minimal_About,
+    Minimal_About
 };
 
 // ----------------------------------------------------------------------------
@@ -191,4 +189,3 @@ void MyFrame::OnAbout(wxCommandEvent& WXUNUSED(event))
 
     wxMessageBox(msg, "About Minimal", wxOK | wxICON_INFORMATION, this);
 }
-