]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/caret.cpp
IMHO these are the correct flags for borland
[wxWidgets.git] / src / msw / caret.cpp
index 29ec0e3f03f1a35130187d14b4388efca8d65d6d..a6fbf355255bbc2067cd26b6e63ce820512cdffe 100644 (file)
@@ -154,10 +154,12 @@ void wxCaret::DoHide()
 
 void wxCaret::DoMove()
 {
-    wxASSERT_MSG( m_hasCaret, "cannot move non existent caret" );
-
-    if ( !::SetCaretPos(m_x, m_y) )
+    if ( m_hasCaret )
     {
-        wxLogLastError("SetCaretPos");
+        if ( !::SetCaretPos(m_x, m_y) )
+        {
+            wxLogLastError("SetCaretPos");
+        }
     }
+    //else: we don't have caret right now, nothing to do (this does happen)
 }