X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/70d26c3f4ffb24d50457d405c9595fd23f9e5b7c..d73ae65656793cc988fd95a56beb02a82fd1736b:/demos/forty/scoredg.h?ds=sidebyside

diff --git a/demos/forty/scoredg.h b/demos/forty/scoredg.h
index 8ce7a7274d..bba63e6f4a 100644
--- a/demos/forty/scoredg.h
+++ b/demos/forty/scoredg.h
@@ -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 _SCOREDG_H_
 #define _SCOREDG_H_
@@ -16,17 +16,17 @@
 class ScoreDialog : public wxDialog
 {
 public:
-	ScoreDialog(wxWindow* parent, ScoreFile* file);
-	virtual ~ScoreDialog();
+    ScoreDialog(wxWindow* parent, ScoreFile* file);
+    virtual ~ScoreDialog(){};
 
-	void Display();
+    void Display();
 
 protected:
-	void OnCloseWindow(wxCloseEvent& event);
+    void OnCloseWindow(wxCloseEvent& event);
 
 private:
-	ScoreFile*	m_scoreFile;
-	wxButton*	m_OK;
+    ScoreFile* m_scoreFile;
+    wxButton* m_OK;
 
 DECLARE_EVENT_TABLE()
 };