From 46f4ce369cd8ce7ae5468b8a2a53c76bcfd5ad1f Mon Sep 17 00:00:00 2001 From: rylek Date: Wed, 20 Apr 2011 21:50:29 +0000 Subject: [PATCH] .CtrlLib: fixed typo in EditMinMaxNotNull::MinMax git-svn-id: svn://ultimatepp.org/upp/trunk@3364 f0d560ea-af0d-0410-9eb7-867de7ffcac7 --- uppsrc/CtrlLib/EditCtrl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uppsrc/CtrlLib/EditCtrl.h b/uppsrc/CtrlLib/EditCtrl.h index 064d2e983..5c5a37d41 100644 --- a/uppsrc/CtrlLib/EditCtrl.h +++ b/uppsrc/CtrlLib/EditCtrl.h @@ -271,7 +271,7 @@ public: EditMinMaxNotNull& Min(DataType min) { Base::Min(min); return *this; } EditMinMaxNotNull& Max(DataType max) { Base::Max(max); return *this; } - EditMinMaxNotNull& MinMax(DataType max) { Base::MinMax(min, max); return *this; } + EditMinMaxNotNull& MinMax(DataType min, DataType max) { Base::MinMax(min, max); return *this; } EditMinMaxNotNull& NotNull(bool nn = true) { Base::NotNull(nn); return *this; } };