diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2020-08-31 21:06:02 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2020-09-01 12:12:12 +0200 |
commit | c26acd15a68fe89ef7d28f90783d1a88d3e70355 (patch) | |
tree | c5608f8b2689f9e69db8d8a0fba62e37e5d0c1a5 /desktop | |
parent | 7c0009fa74842fbc1365eda5c55f96ab827dd10a (diff) |
Fix typo in code
It passed "make check" on Linux
Change-Id: Ide85943961b6f5102294356ff623c6be8d7bc790
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101813
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'desktop')
-rw-r--r-- | desktop/source/lib/init.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/lib/init.cxx b/desktop/source/lib/init.cxx index 7d66c0fcdfc6..f3ba0d498b98 100644 --- a/desktop/source/lib/init.cxx +++ b/desktop/source/lib/init.cxx @@ -1387,7 +1387,7 @@ void CallbackFlushHandler::callback(const int type, const char* payload, void* d void CallbackFlushHandler::queue(const int type, const char* data) { - comphelper::ProfileZone aZone("CallbackFlushHander::queue"); + comphelper::ProfileZone aZone("CallbackFlushHandler::queue"); CallbackData aCallbackData(type, (data ? data : "(nil)")); const std::string& payload = aCallbackData.PayloadString; @@ -1945,7 +1945,7 @@ bool CallbackFlushHandler::processWindowEvent(CallbackData& aCallbackData) void CallbackFlushHandler::Invoke() { - comphelper::ProfileZone aZone("CallbackFlushHander::Invoke"); + comphelper::ProfileZone aZone("CallbackFlushHandler::Invoke"); if (!m_pCallback) return; |