diff options
Diffstat (limited to 'comphelper/source')
-rw-r--r-- | comphelper/source/misc/lok.cxx | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/comphelper/source/misc/lok.cxx b/comphelper/source/misc/lok.cxx index e1a099d04ea6..cf776f00c35f 100644 --- a/comphelper/source/misc/lok.cxx +++ b/comphelper/source/misc/lok.cxx @@ -19,6 +19,8 @@ static bool g_bActive(false); static bool g_bPartInInvalidation(false); +static bool g_bTiledPainting(false); + void setActive(bool bActive) { g_bActive = bActive; @@ -39,6 +41,16 @@ bool isPartInInvalidation() return g_bPartInInvalidation; } +void setTiledPainting(bool bTiledPainting) +{ + g_bTiledPainting = bTiledPainting; +} + +bool isTiledPainting() +{ + return g_bTiledPainting; +} + static bool g_bLocalRendering(false); void setLocalRendering(bool bLocalRendering) |