diff options
author | Ashod Nakashian <ashod.nakashian@collabora.co.uk> | 2019-07-22 19:00:23 -0400 |
---|---|---|
committer | Michael Meeks <michael.meeks@collabora.com> | 2019-08-02 11:41:50 -0400 |
commit | 6e33d3046186b10f4ef49f3de8ee87adb100bab9 (patch) | |
tree | 766e6d7440e9203ee6106254be2bab8fe3363274 /desktop | |
parent | 8d82bb6d4a6e9a0a7150bd0a2117970c99a48f63 (diff) |
clipboard: log before erasing
Change-Id: I6d59cdd31c62bbc7db81ccb8985745f68d19cd28
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/lokclipboard.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/source/lib/lokclipboard.cxx b/desktop/source/lib/lokclipboard.cxx index 9ed05bc2c383..8b7577f3bf63 100644 --- a/desktop/source/lib/lokclipboard.cxx +++ b/desktop/source/lib/lokclipboard.cxx @@ -51,8 +51,8 @@ void LOKClipboardFactory::releaseClipboardForView(int nViewId) auto it = gClipboards.get()->find(nViewId); if (it != gClipboards.get()->end()) { + SAL_INFO("lok", "Releasing clip: " << it->second.get() << " for destroyed " << nViewId); gClipboards.get()->erase(it); - SAL_INFO("lok", "Released clip: " << it->second.get() << " for destroyed " << nViewId); } } } |