diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-10-04 10:56:55 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2016-10-04 14:34:57 +0200 |
commit | 59e38e946f19ab59370f8e52370b7a7b861cc558 (patch) | |
tree | 6f8dc52f6951996fa25a5f229f8b65f7b5fcc916 /comphelper | |
parent | ac9373e65ed7908a19edc6f5c758af9b8232820b (diff) |
comphelper: move setTiledPainting() from SfxViewShell
And make it a static one. The primary point of that member function is
to prevent invalidations during paint, and since multiple views are
allowed, it wasn't extended to filter out invalidations from all views,
not just from the current one. (Same goes for other callback types.)
Change-Id: I23e6b2c2ff94227f2b72c481148b2d8279ae2905
Diffstat (limited to 'comphelper')
-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) |