]> git.saurik.com Git - wxWidgets.git/commitdiff
SetValue() takes just bool, not const bool
authorVadim Zeitlin <vadim@wxwidgets.org>
Sun, 28 Sep 2003 18:01:42 +0000 (18:01 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sun, 28 Sep 2003 18:01:42 +0000 (18:01 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23989 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/checkbox.h

index ac034b8e12c871b08c16e34a5e082d90ffbdaddd..47a4e356d503f5da57a9c7d4d7bed5ed7cefe0a4 100644 (file)
@@ -61,7 +61,7 @@ public:
     wxCheckBoxBase() { }
 
     // set/get the checked status of the listbox
-    virtual void SetValue(const bool value) = 0;
+    virtual void SetValue(bool value) = 0;
     virtual bool GetValue() const = 0;
 
     bool IsChecked() const