]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/fontdlg.h
Refactored & cleaned up wxChoice & wxComboBox code, fixed client data
[wxWidgets.git] / include / wx / msw / fontdlg.h
index 2114a3f55a4e1ef2979b72187e4380ae0ce0c883..cc5d04625433c4db45faaa22ad87442f903358ab 100644 (file)
 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)