diff --git a/include/wxex/valhex.h b/include/wxex/valhex.h index d6d01de..77c65d7 100644 --- a/include/wxex/valhex.h +++ b/include/wxex/valhex.h @@ -104,11 +104,11 @@ public: /// /// Constructs new hexadecimal validator /// - wxHexValidator(ValueType *value = NULL, int style = wxNUM_VAL_DEFAULT, unsigned int width = 0) : Base(value, style) + wxHexValidator(T *value = NULL, int style = wxNUM_VAL_DEFAULT, unsigned int width = 0) : Base(value, style) { this->DoSetWidth(width); - this->DoSetMin(std::numeric_limits::min()); - this->DoSetMax(std::numeric_limits::max()); + this->DoSetMin(std::numeric_limits::min()); + this->DoSetMax(std::numeric_limits::max()); } ///