diff options
author | Tor Lillqvist <tml@collabora.com> | 2021-09-08 12:36:37 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2021-09-08 12:36:37 +0300 |
commit | 9a2d65274073c7b56f0e45f82d580e21b03968b6 (patch) | |
tree | 233525a64d447cac19c977d55913a40954b0fecc /vcl | |
parent | 294a82dda5045ad71122f946b67ec3d1d2e278d8 (diff) |
Revert "Tentative fix for crash in the iOS app"
The root cause for the problem was fixed elsewhere by
0f65b4b6f33891a724bee5356aa5549c76fa0ce3 (and back-ports).
This reverts commit 9e4c72ec7ea83aa0d023a90a6b02ddb17c6b2d74
Change-Id: I0167846d2aaeacc66657b4203d0118b7847679ba
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/window/paint.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/vcl/source/window/paint.cxx b/vcl/source/window/paint.cxx index 4efb43c1bc1b..5a01e4825e3a 100644 --- a/vcl/source/window/paint.cxx +++ b/vcl/source/window/paint.cxx @@ -652,7 +652,7 @@ IMPL_LINK_NOARG(Window, ImplHandlePaintHdl, Timer *, void) mpWindowImpl->mpFrameData->maPaintIdle.Stop(); return; } -#ifndef IOS + comphelper::ProfileZone aZone("VCL idle re-paint"); // save paint events until layout is done @@ -672,7 +672,6 @@ IMPL_LINK_NOARG(Window, ImplHandlePaintHdl, Timer *, void) { ImplCallOverlapPaint(); } -#endif } IMPL_LINK_NOARG(Window, ImplHandleResizeTimerHdl, Timer *, void) |