]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/calctrl.h
Added GAddress_INET_SetAnyAddress and dummy UNIX address handling.
[wxWidgets.git] / include / wx / calctrl.h
index 94e7e2002c9ed807f3448fb9302ba9dc5c4b5e55..59e3e68027c5a7d13fc50999db314ae4abb50cf1 100644 (file)
@@ -47,6 +47,14 @@ enum wxCalendarDateBorder
 
 class WXDLLEXPORT wxCalendarDateAttr
 {
+protected:
+    // This has to be before the use of Init(), for MSVC++ 1.5
+    void Init(wxCalendarDateBorder border = wxCAL_BORDER_NONE)
+    {
+        m_border = border;
+        m_holiday = FALSE;
+    }
+
 public:
     // ctors
     wxCalendarDateAttr() { Init(); }
@@ -90,13 +98,6 @@ public:
     const wxFont& GetFont() const { return m_font; }
     wxCalendarDateBorder GetBorder() const { return m_border; }
 
-protected:
-    void Init(wxCalendarDateBorder border = wxCAL_BORDER_NONE)
-    {
-        m_border = border;
-        m_holiday = FALSE;
-    }
-
 private:
     wxColour m_colText,
              m_colBack,