From: Volker Krause Date: Fri, 30 Nov 2012 15:09:23 +0000 (+0100) Subject: Compile with QT_NO_VALIDATOR. X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=f424629374b2d04d80dde4b07f17c1f2e52fe884;p=konrad%2Fqtdeclarative.git Compile with QT_NO_VALIDATOR. Theses enums were apparently renamed for the case QValidator is present, so follow this here as well. Change-Id: Ic2a3fd5296a6dd9da356c2e5efd88f56d0843664 Reviewed-by: Thomas McGuire --- diff --git a/src/quick/items/qquicktextinput_p_p.h b/src/quick/items/qquicktextinput_p_p.h index cf08424..ece279c 100644 --- a/src/quick/items/qquicktextinput_p_p.h +++ b/src/quick/items/qquicktextinput_p_p.h @@ -464,9 +464,9 @@ private: IntermediateInput = QValidator::Intermediate, AcceptableInput = QValidator::Acceptable #else - Invalid, - Intermediate, - Acceptable + InvalidInput, + IntermediateInput, + AcceptableInput #endif };