]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/forty.h
wxODBC changes logged
[wxWidgets.git] / demos / forty / forty.h
index 2b8a93005a17c0c843029acd6d736206e6172022..c0e7e6f12bd93306d89ab0c81dbff9153916ea96 100644 (file)
@@ -16,7 +16,7 @@
 class FortyApp: public wxApp
 {
 public:
-    FortyApp();
+    FortyApp(){};
     ~FortyApp();
     bool OnInit();
 
@@ -38,8 +38,8 @@ class FortyCanvas;
 class FortyFrame: public wxFrame
 {
 public:
-  FortyFrame(wxFrame* frame, const wxString& title, const wxPoint& pos, const wxSize& size, bool largecards);
-    virtual ~FortyFrame();
+    FortyFrame(wxFrame* frame, const wxString& title, const wxPoint& pos, const wxSize& size, bool largecards);
+    virtual ~FortyFrame(){};
 
     void OnCloseWindow(wxCloseEvent& event);
 
@@ -60,13 +60,13 @@ public:
     DECLARE_EVENT_TABLE()
 
 private:
-    enum MenuCommands { 
-        NEW_GAME = 10, 
+    enum MenuCommands {
+        NEW_GAME = 10,
         SCORES,
-        UNDO, 
+        UNDO,
         REDO,
-        RIGHT_BUTTON_UNDO, 
-        HELPING_HAND, 
+        RIGHT_BUTTON_UNDO,
+        HELPING_HAND,
         LARGE_CARDS
     };
 
@@ -86,7 +86,7 @@ public:
         const wxPoint& pos = wxDefaultPosition,
         const wxSize& size = wxDefaultSize,
         long style = wxDEFAULT_DIALOG_STYLE );
-    
+
     bool AddControls(wxWindow* parent);
 
 private: