]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/valtext.cpp
Implement and document wxDataViewTreeCtrl::IsContainer(), use it in the sample to...
[wxWidgets.git] / src / common / valtext.cpp
index 59a7eaa6bb3b2caf83765c9ff6d6cfb4605d19e3..48b8bf3e32404fb47a8e5d2a252b0b787ac44d48 100644 (file)
@@ -76,7 +76,7 @@ void wxTextValidator::SetStyle(long style)
 {
     m_validatorStyle = style;
 
-#ifdef __WXDEBUG__
+#if wxDEBUG_LEVEL
     int check;
     check = (int)HasFlag(wxFILTER_ALPHA) + (int)HasFlag(wxFILTER_ALPHANUMERIC) +
             (int)HasFlag(wxFILTER_DIGITS) + (int)HasFlag(wxFILTER_NUMERIC);
@@ -93,7 +93,7 @@ void wxTextValidator::SetStyle(long style)
             (int)HasFlag(wxFILTER_EXCLUDE_LIST) + (int)HasFlag(wxFILTER_EXCLUDE_CHAR_LIST);
     wxASSERT_MSG(check <= 1,
         "Using both an include/exclude list may lead to unexpected results");
-#endif
+#endif // wxDEBUG_LEVEL
 }
 
 bool wxTextValidator::Copy(const wxTextValidator& val)
@@ -126,7 +126,7 @@ wxTextEntry *wxTextValidator::GetTextEntry()
 #endif
 
     wxFAIL_MSG(
-        _T("wxTextValidator can only be used with wxTextCtrl or wxComboBox")
+        wxT("wxTextValidator can only be used with wxTextCtrl or wxComboBox")
     );
 
     return NULL;