]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/valtext.cpp
save the current status text for each pane inside wxStatusBarPane: native controls...
[wxWidgets.git] / src / common / valtext.cpp
index 78135abcc03b37c99c7386bce16fb87dec3eac70..93762c52d86d5c0b746a47868350ff06f85e418a 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 = _("Please enter a non-empty string.");
     }
     else if ( !(errormsg = IsValid(val)).empty() )
     {