diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-06-18 14:12:04 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2015-06-22 11:15:08 +0200 |
commit | 3f0d2a1cd5508c2e0c10b4a280c88ad703853548 (patch) | |
tree | ba4b66beba7bd703df58938d99b60d0828e29be7 /comphelper | |
parent | 4de6d972ee747a49221d26522924ff6051f8f721 (diff) |
Add SwTiledRenderingTest::testGetTextSelection() testcase.
Fails without commit 193b907b2bc49b9e48cfab2583e81a24aaa2e666
(SwXTextDocument::getTextSelection: fix missing editeng forward,
2015-06-18).
Change-Id: I5fdab128471c12901f930b6b4ab4e2304dd3fe64
Reviewed-on: https://gerrit.libreoffice.org/16359
Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk>
Tested-by: Jenkins <ci@libreoffice.org>
(cherry picked from commit bcace9acafa24d5251e90587af776fdb0a808ed8)
Diffstat (limited to 'comphelper')
-rw-r--r-- | comphelper/source/misc/lok.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/comphelper/source/misc/lok.cxx b/comphelper/source/misc/lok.cxx index fc8a09d054e9..a6abd2a65486 100644 --- a/comphelper/source/misc/lok.cxx +++ b/comphelper/source/misc/lok.cxx @@ -15,16 +15,16 @@ namespace comphelper namespace LibreOfficeKit { -static bool bActive(false); +static bool g_bActive(false); -void setActive() +void setActive(bool bActive) { - bActive = true; + g_bActive = bActive; } bool isActive() { - return bActive; + return g_bActive; } static void (*pStatusIndicatorCallback)(void *data, statusIndicatorCallbackType type, int percent)(nullptr); |