]> git.saurik.com Git - wxWidgets.git/blobdiff - demos/forty/playerdg.h
Workaround for gtk-qt display bug
[wxWidgets.git] / demos / forty / playerdg.h
index 70d9cfb6cb2b7428af821e6012ce5a17e4f75e9f..c6e0f89b2978746fa822806c903cb51a6316842b 100644 (file)
@@ -6,9 +6,9 @@
 // Created:     21/07/97
 // RCS-ID:      $Id$
 // Copyright:   (c) 1993-1998 Chris Breeze
-// Licence:    wxWindows licence
+// Licence:     wxWindows licence
 //---------------------------------------------------------------------------
-// Last modified: 22nd July 1998 - ported to wxWindows 2.0
+// Last modified: 22nd July 1998 - ported to wxWidgets 2.0
 /////////////////////////////////////////////////////////////////////////////
 #ifndef _PLAYERDG_H_
 #define _PLAYERDG_H_
 class PlayerSelectionDialog : public wxDialog
 {
 public:
-       PlayerSelectionDialog(wxWindow* parent, ScoreFile* file);
-       virtual ~PlayerSelectionDialog();
+    PlayerSelectionDialog(wxWindow* parent, ScoreFile* file);
+    virtual ~PlayerSelectionDialog(){};
 
-       const wxString& GetPlayersName();
-       void ButtonCallback(wxCommandEvent& event);
-       void SelectCallback(wxCommandEvent& event);
-       void OnSize(wxSizeEvent& event);
+    const wxString& GetPlayersName();
+    void ButtonCallback(wxCommandEvent& event);
+    void SelectCallback(wxCommandEvent& event);
+    void OnSize(wxSizeEvent& event);
 
-       DECLARE_EVENT_TABLE()
+    DECLARE_EVENT_TABLE()
 
 protected:
-       friend void SelectCallback(wxListBox&, wxCommandEvent&);
-       void OnCloseWindow(wxCloseEvent& event);
+    friend void SelectCallback(wxListBox&, wxCommandEvent&);
+    void OnCloseWindow(wxCloseEvent& event);
 
 private:
-       ScoreFile*      m_scoreFile;
-       wxString        m_player;
-       wxButton*       m_OK;
-       wxButton*       m_cancel;
-       wxTextCtrl*     m_textField;
+    ScoreFile* m_scoreFile;
+    wxString m_player;
+    wxButton* m_OK;
+    wxButton* m_cancel;
+    wxTextCtrl* m_textField;
 };
 
 #endif