]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/caret.cpp
tiny fixes
[wxWidgets.git] / src / msw / caret.cpp
index 87e46935a5ec7275219a4bc1fb8338534edc5eef..55cd4242c956325e1ae5308c0394f582e586dbbb 100644 (file)
@@ -81,8 +81,8 @@ void wxCaretBase::SetBlinkTime(int milliseconds)
 
 bool wxCaret::MSWCreateCaret()
 {
-    wxASSERT_MSG( GetWindow(), _T("caret without window cannot be created") );
-    wxASSERT_MSG( IsOk(),  _T("caret of zero size cannot be created") );
+    wxASSERT_MSG( GetWindow(), T("caret without window cannot be created") );
+    wxASSERT_MSG( IsOk(),  T("caret of zero size cannot be created") );
 
     if ( !m_hasCaret )
     {
@@ -127,8 +127,8 @@ void wxCaret::OnKillFocus()
 
 void wxCaret::DoShow()
 {
-    wxASSERT_MSG( GetWindow(), _T("caret without window cannot be shown") );
-    wxASSERT_MSG( IsOk(), _T("caret of zero size cannot be shown") );
+    wxASSERT_MSG( GetWindow(), T("caret without window cannot be shown") );
+    wxASSERT_MSG( IsOk(), T("caret of zero size cannot be shown") );
 
     if ( m_hasCaret )
     {
@@ -154,7 +154,7 @@ void wxCaret::DoMove()
     if ( m_hasCaret )
     {
         wxWindow *winFocus = wxWindow::FindFocus();
-        wxASSERT_MSG( winFocus == GetWindow(), _T("how did we lose focus?") );
+        wxASSERT_MSG( winFocus == GetWindow(), T("how did we lose focus?") );
 
         CALL_CARET_API(SetCaretPos, (m_x, m_y));
     }