]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix for [ 1351655 ] wxTextValidator::OnChar not working with numeric filter
authorJulian Smart <julian@anthemion.co.uk>
Sat, 21 Jan 2006 15:13:00 +0000 (15:13 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Sat, 21 Jan 2006 15:13:00 +0000 (15:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37036 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/common/valtext.cpp

index ee3440fdbd617e86d7a0ab109a1e5f713645ec22..c8546923340e76cc23872eb19fa0bd81756536b9 100644 (file)
@@ -311,7 +311,7 @@ void wxTextValidator::OnChar(wxKeyEvent& event)
               ((m_validatorStyle & wxFILTER_ALPHA) && !wxIsalpha(keyCode)) ||
               ((m_validatorStyle & wxFILTER_ALPHANUMERIC) && !wxIsalnum(keyCode)) ||
               ((m_validatorStyle & wxFILTER_NUMERIC) && !wxIsdigit(keyCode)
-                                && keyCode != wxT('.') && keyCode != wxT(',') && keyCode != wxT('-'))
+                                && keyCode != wxT('.') && keyCode != wxT(',') && keyCode != wxT('-') && keyCode != wxT('+') && keyCode != wxT('e') && keyCode != wxT('E'))
              )
            )
         {