From c26acd15a68fe89ef7d28f90783d1a88d3e70355 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Mon, 31 Aug 2020 21:06:02 +0200 Subject: 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 --- desktop/source/lib/init.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'desktop/source') 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; -- cgit