]> git.saurik.com Git - wxWidgets.git/commitdiff
No changes, just add a missing comma in wxNumValidator documentation.
authorVadim Zeitlin <vadim@wxwidgets.org>
Tue, 23 Aug 2011 11:04:41 +0000 (11:04 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Tue, 23 Aug 2011 11:04:41 +0000 (11:04 +0000)
SetRange() declaration wasn't properly terminated.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68862 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/valnum.h

index 3cf138a07e42e20b532812085b132b386a89c79a..105384615be28a5ab477b54995662c891e36f752 100644 (file)
@@ -101,7 +101,7 @@ public:
 
         Calling this is equivalent to calling both SetMin() and SetMax().
      */
-    void SetRange(ValueType min, ValueType max)
+    void SetRange(ValueType min, ValueType max);
 
 
     /**