summaryrefslogtreecommitdiffstats
path: root/include/test
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2021-10-21 12:20:52 +0200
committerLuboš Luňák <l.lunak@collabora.com>2021-10-22 15:53:34 +0200
commit31b1e23e2d806f847fce21b8827f015384f20916 (patch)
tree51e703c3098cfa9e1540b7641493866bb95eb80b /include/test
parentrevert unittests to use plain text-based LibreOfficeKitCallback (diff)
downloadcore-31b1e23e2d806f847fce21b8827f015384f20916.tar.gz
core-31b1e23e2d806f847fce21b8827f015384f20916.zip
better name for a function overload
It's better to add to the name what the overload does rather than just have a "mysterious" extra int. Change-Id: Iff89679c4a978a4596ac662ef74e934cdefefc9e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/124001 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'include/test')
-rw-r--r--include/test/lokcallback.hxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/test/lokcallback.hxx b/include/test/lokcallback.hxx
index 988ce7688e93..f7a619f68cb3 100644
--- a/include/test/lokcallback.hxx
+++ b/include/test/lokcallback.hxx
@@ -26,7 +26,8 @@ class OOO_DLLPUBLIC_TEST TestLokCallbackWrapper : public SfxLokCallbackInterface
public:
TestLokCallbackWrapper(LibreOfficeKitCallback callback, void* data);
virtual void libreOfficeKitViewCallback(int nType, const char* pPayload) override;
- virtual void libreOfficeKitViewCallback(int nType, const char* pPayload, int nViewId) override;
+ virtual void libreOfficeKitViewCallbackWithViewId(int nType, const char* pPayload,
+ int nViewId) override;
virtual void libreOfficeKitViewInvalidateTilesCallback(const tools::Rectangle* pRect,
int nPart) override;