summaryrefslogtreecommitdiff
path: root/comphelper/source/misc/lok.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'comphelper/source/misc/lok.cxx')
-rw-r--r--comphelper/source/misc/lok.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/comphelper/source/misc/lok.cxx b/comphelper/source/misc/lok.cxx
index a321260588f1..e1a099d04ea6 100644
--- a/comphelper/source/misc/lok.cxx
+++ b/comphelper/source/misc/lok.cxx
@@ -17,7 +17,7 @@ namespace LibreOfficeKit
static bool g_bActive(false);
-static bool g_bViewCallback(true);
+static bool g_bPartInInvalidation(false);
void setActive(bool bActive)
{
@@ -29,14 +29,14 @@ bool isActive()
return g_bActive;
}
-void setViewCallback(bool bViewCallback)
+void setPartInInvalidation(bool bPartInInvalidation)
{
- g_bViewCallback = bViewCallback;
+ g_bPartInInvalidation = bPartInInvalidation;
}
-bool isViewCallback()
+bool isPartInInvalidation()
{
- return g_bViewCallback;
+ return g_bPartInInvalidation;
}
static bool g_bLocalRendering(false);