]> git.saurik.com Git - wxWidgets.git/blobdiff - src/osx/checklst_osx.cpp
Made wxWindow::HasScrollbar() do what it says.
[wxWidgets.git] / src / osx / checklst_osx.cpp
index c177a21b724b98ee758a0a3e574e90a93f79d402..98a9b96cb5aba0ec5d1f2ab4fa84a364b3821e9e 100644 (file)
@@ -85,7 +85,7 @@ bool wxCheckListBox::Create(
 bool wxCheckListBox::IsChecked(unsigned int n) const
 {
     wxCHECK_MSG( IsValid(n), false,
-                 _T("invalid index in wxCheckListBox::IsChecked") );
+                 wxT("invalid index in wxCheckListBox::IsChecked") );
 
     return m_checks[n] != 0;
 }
@@ -93,7 +93,7 @@ bool wxCheckListBox::IsChecked(unsigned int n) const
 void wxCheckListBox::Check(unsigned int n, bool check)
 {
     wxCHECK_RET( IsValid(n),
-                 _T("invalid index in wxCheckListBox::Check") );
+                 wxT("invalid index in wxCheckListBox::Check") );
 
     // intermediate var is needed to avoid compiler warning with VC++
     bool isChecked = m_checks[n] != 0;