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