]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/caret.h
added wxGetCCDefaultFont() returning the default icon font
[wxWidgets.git] / include / wx / caret.h
index e34ed29d12ec995d152f9468114606b1989d0b69..f8e547bc38fd5102e21309ed8ca99198f0063559 100644 (file)
@@ -16,7 +16,7 @@
 
 #if wxUSE_CARET
 
-#if defined(__GNUG__) && !defined(__APPLE__)
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "caret.h"
 #endif
 
@@ -212,18 +212,23 @@ public:
     wxCaretSuspend(wxWindow *win)
     {
         m_caret = win->GetCaret();
-        if ( m_caret )
+        m_show = FALSE;        
+        if ( m_caret && m_caret->IsVisible() )
+        {
             m_caret->Hide();
+            m_show = TRUE;
+        }
     }
 
     ~wxCaretSuspend()
     {
-        if ( m_caret )
+        if ( m_caret && m_show )
             m_caret->Show();
     }
 
 private:
     wxCaret *m_caret;
+    bool     m_show;
 
     DECLARE_NO_COPY_CLASS(wxCaretSuspend)
 };