summaryrefslogtreecommitdiff
path: root/include/LibreOfficeKit
diff options
context:
space:
mode:
authorMiklos Vajna <vmiklos@collabora.co.uk>2015-03-04 10:03:49 +0100
committerMiklos Vajna <vmiklos@collabora.co.uk>2015-03-09 10:16:11 +0100
commit0097544d43b34c8b4f4083f759ef3748aed043ea (patch)
tree38e6da56a4fc0fa55908c77e63c343e3acee53ed /include/LibreOfficeKit
parentcc7d10c04fe3047f18b6d5271a5f46a31b80d360 (diff)
lokdocview: CursorVisible -> CursorOverlayVisible
There are multiple levels of being hidden: if the cursor is not visible due to just blinking or in case it won't show up after some timeout, either. Let's use CursorOverlayVisible for the condition if the cursor should be painted right now or not, and CursorVisible for the long-term "is it visible" state. Change-Id: Ib583236c1429f25e14ba79fdabad4ea899bb4269
Diffstat (limited to 'include/LibreOfficeKit')
-rw-r--r--include/LibreOfficeKit/LibreOfficeKitGtk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/LibreOfficeKit/LibreOfficeKitGtk.h b/include/LibreOfficeKit/LibreOfficeKitGtk.h
index d6d720e9ec90..dbd2f8d9ff69 100644
--- a/include/LibreOfficeKit/LibreOfficeKitGtk.h
+++ b/include/LibreOfficeKit/LibreOfficeKitGtk.h
@@ -44,8 +44,8 @@ struct _LOKDocView
gboolean m_bEdit;
/// Position and size of the visible cursor.
GdkRectangle m_aVisibleCursor;
- /// Cursor is visible or hidden (for blinking).
- gboolean m_bCursorVisible;
+ /// Cursor overlay is visible or hidden (for blinking).
+ gboolean m_bCursorOverlayVisible;
/// Time of the last button press.
guint32 m_nLastButtonPressTime;
/// Time of the last button release.