]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mac/classic/fontdlg.cpp
added wxID_ANY default value for the id parameter of Create() for consistency with...
[wxWidgets.git] / src / mac / classic / fontdlg.cpp
index 03c894c553ad13863823f1d986cb9ec31abe7957..ac80e0ed51c4d047d1940cfca953497c73c4224a 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        fontdlg.cpp
+// Name:        src/mac/classic/fontdlg.cpp
 // Purpose:     wxFontDialog class. NOTE: you can use the generic class
 //              if you wish, instead of implementing this.
 // Author:      Stefan Csomor
@@ -7,20 +7,19 @@
 // Created:     1998-01-01
 // RCS-ID:      $Id$
 // Copyright:   (c) Stefan Csomor
-// Licence:       wxWindows licence
+// Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
-#pragma implementation "fontdlg.h"
-#endif
+#include "wx/wxprec.h"
 
 #include "wx/mac/fontdlg.h"
-#include "wx/cmndata.h"
 
-#if !USE_SHARED_LIBRARY
-IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog)
+#ifndef WX_PRECOMP
+    #include "wx/cmndata.h"
 #endif
 
+IMPLEMENT_DYNAMIC_CLASS(wxFontDialog, wxDialog)
+
 /*
  * wxFontDialog
  */
@@ -43,7 +42,7 @@ bool wxFontDialog::Create(wxWindow *parent, const wxFontData& data)
 
     // TODO: you may need to do dialog creation here, unless it's
     // done in ShowModal.
-    return TRUE;
+    return true;
 }
 
 int wxFontDialog::ShowModal()
@@ -51,4 +50,3 @@ int wxFontDialog::ShowModal()
     // TODO: show (maybe create) the dialog
     return wxID_CANCEL;
 }
-