]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/window.h
added WC_NO_BEST_FIT_CHARS
[wxWidgets.git] / include / wx / msw / window.h
index 74f5ec8e5b3485bbc18f424237935816305d8654..d936b7a8d68926eda12ac900eec9d812b15ed4fd 100644 (file)
@@ -53,14 +53,18 @@ enum
 class WXDLLEXPORT wxWindowMSW : public wxWindowBase
 {
 public:
-    wxWindowMSW();
+    wxWindowMSW() { Init(); }
 
     wxWindowMSW(wxWindow *parent,
                 wxWindowID id,
                 const wxPoint& pos = wxDefaultPosition,
                 const wxSize& size = wxDefaultSize,
                 long style = 0,
-                const wxString& name = wxPanelNameStr);
+                const wxString& name = wxPanelNameStr)
+    {
+        Init();
+        Create(parent, id, pos, size, style, name);
+    }
 
     virtual ~wxWindowMSW();