diff options
author | Merov Linden <merov@lindenlab.com> | 2014-11-10 22:35:24 -0800 |
---|---|---|
committer | Merov Linden <merov@lindenlab.com> | 2014-11-10 22:35:24 -0800 |
commit | b31f7381ae85a0aa6c4d9e93b1d8bac5854fdd01 (patch) | |
tree | e34e45e028673254ed9df52eaf71505f7dbeb71a /indra/newview/llfloatermarketplacelistings.cpp | |
parent | 70a2956f584f554d1f0fd3b12890671ac47ea1f2 (diff) |
DD-266 : Use prevalidateNonNegativeS32 instead of prevalidatePositiveS32... Grmbl...
Diffstat (limited to 'indra/newview/llfloatermarketplacelistings.cpp')
-rwxr-xr-x | indra/newview/llfloatermarketplacelistings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloatermarketplacelistings.cpp b/indra/newview/llfloatermarketplacelistings.cpp index 942279b0f1..5f3e83ef5d 100755 --- a/indra/newview/llfloatermarketplacelistings.cpp +++ b/indra/newview/llfloatermarketplacelistings.cpp @@ -569,7 +569,7 @@ BOOL LLFloaterAssociateListing::postBuild() { getChild<LLButton>("OK")->setCommitCallback(boost::bind(&LLFloaterAssociateListing::apply, this, TRUE)); getChild<LLButton>("Cancel")->setCommitCallback(boost::bind(&LLFloaterAssociateListing::cancel, this)); - getChild<LLLineEditor>("listing_id")->setPrevalidate(&LLTextValidate::validatePositiveS32); + getChild<LLLineEditor>("listing_id")->setPrevalidate(&LLTextValidate::validateNonNegativeS32); center(); return LLFloater::postBuild(); |