]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/scrolbar.h
Always initialize SelectInHDC::m_hgdiobj in wxMSW.
[wxWidgets.git] / include / wx / scrolbar.h
index 4fd9e3d0648cf5988eed8ac0f26398b2c852729a..f63573c0cb6c6ca2bfe4786d8f4a8314cfebe97e 100644 (file)
@@ -1,5 +1,5 @@
 /////////////////////////////////////////////////////////////////////////////
-// Name:        scrolbar.h
+// Name:        wx/scrolbar.h
 // Purpose:     wxScrollBar base header
 // Author:      Julian Smart
 // Modified by:
@@ -29,7 +29,10 @@ class WXDLLIMPEXP_CORE wxScrollBarBase : public wxControl
 public:
     wxScrollBarBase() { }
 
-    // scrollbar construction
+    /*
+        Derived classes should provide the following method and ctor with the
+        same parameters:
+
     bool Create(wxWindow *parent,
                 wxWindowID id,
                 const wxPoint& pos = wxDefaultPosition,
@@ -37,6 +40,7 @@ public:
                 long style = wxSB_HORIZONTAL,
                 const wxValidator& validator = wxDefaultValidator,
                 const wxString& name = wxScrollBarNameStr);
+    */
 
     // accessors
     virtual int GetThumbPosition() const = 0;
@@ -56,7 +60,7 @@ public:
     bool IsNeeded() const { return GetRange() > GetThumbSize(); }
 
 private:
-    DECLARE_NO_COPY_CLASS(wxScrollBarBase)
+    wxDECLARE_NO_COPY_CLASS(wxScrollBarBase);
 };
 
 #if defined(__WXUNIVERSAL__)