]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/fontdlg.h
Fixed source for WinCE compatibility
[wxWidgets.git] / include / wx / msw / fontdlg.h
index 2114a3f55a4e1ef2979b72187e4380ae0ce0c883..b68bb6ccf28b112183a415113856634a6e857845 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_MSW_FONTDLG_H_
 #define _WX_MSW_FONTDLG_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma interface "fontdlg.h"
 #endif
 
 class WXDLLEXPORT wxFontDialog : public wxFontDialogBase
 {
 public:
-    wxFontDialog() : wxFontDialogBase() { }
-    wxFontDialog(wxWindow *parent) : wxFontDialogBase(parent) { }
+    wxFontDialog() : wxFontDialogBase() { /* must be Create()d later */ }
+    wxFontDialog(wxWindow *parent)
+        : wxFontDialogBase(parent) { Create(parent); }
     wxFontDialog(wxWindow *parent, const wxFontData& data)
-        : wxFontDialogBase(parent, data) { }
+        : wxFontDialogBase(parent, data) { Create(parent, data); }
 
     virtual int ShowModal();
 
-    // deprecated
-    wxFontDialog(wxWindow *parent, wxFontData *data)
-        : wxFontDialogBase(parent, data) { }
+    // deprecated interface, don't use
+    wxFontDialog(wxWindow *parent, const wxFontData *data)
+        : wxFontDialogBase(parent, data) { Create(parent, data); }
 
 protected:
-    DECLARE_DYNAMIC_CLASS(wxFontDialog)
+    DECLARE_DYNAMIC_CLASS_NO_COPY(wxFontDialog)
 };
 
 #endif