]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/valtext.cpp
blind build fix for STL builds
[wxWidgets.git] / src / common / valtext.cpp
index 93762c52d86d5c0b746a47868350ff06f85e418a..59a7eaa6bb3b2caf83765c9ff6d6cfb4605d19e3 100644 (file)
@@ -149,7 +149,7 @@ bool wxTextValidator::Validate(wxWindow *parent)
     wxString errormsg;
     if ( HasFlag(wxFILTER_EMPTY) && val.empty() )
     {
-        errormsg = _("Please enter a non-empty string.");
+        errormsg = _("Required information entry is empty.");
     }
     else if ( !(errormsg = IsValid(val)).empty() )
     {