]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/valtext.cpp
1. added range checks in wxGridStringTable
[wxWidgets.git] / src / common / valtext.cpp
index 0bc8568d542e44a5152b50c686470c8e42223aa7..27e3d04cd62dadc610cfe6e20eb6ae9919e81cf3 100644 (file)
     #include <clib.h>
 #endif
 
-#if !USE_SHARED_LIBRARY
 IMPLEMENT_DYNAMIC_CLASS(wxTextValidator, wxValidator)
 
 BEGIN_EVENT_TABLE(wxTextValidator, wxValidator)
     EVT_CHAR(wxTextValidator::OnChar)
 END_EVENT_TABLE()
-#endif
 
 static bool wxIsNumeric(const wxString& val);
 
@@ -271,7 +269,7 @@ void wxTextValidator::OnChar(wxKeyEvent& event)
 
     if ( m_validatorWindow )
     {
-        int keyCode = event.KeyCode();
+        int keyCode = (int)event.KeyCode();
 
         // we don't filter special keys and Delete
         if (
@@ -312,4 +310,3 @@ static bool wxIsNumeric(const wxString& val)
 
 #endif
   // wxUSE_VALIDATORS
-  
\ No newline at end of file