include/formula/funcutl.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit aa2e56307e8beaae6f56f20a554a0d3f2495499b Author: Caolán McNamara <[email protected]> AuthorDate: Tue Dec 1 15:45:02 2020 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Wed Dec 2 09:42:54 2020 +0100 move the callbacks to be private Change-Id: I75a786d379ce1ea80acef90b9574d2901e046f3c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/106993 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/include/formula/funcutl.hxx b/include/formula/funcutl.hxx index 02cf585a771e..5c729da03638 100644 --- a/include/formula/funcutl.hxx +++ b/include/formula/funcutl.hxx @@ -48,12 +48,12 @@ private: DECL_LINK( UpdateHdl, Timer*, void ); -protected: DECL_LINK(KeyInputHdl, const KeyEvent&, bool); DECL_LINK(GetFocus, weld::Widget&, void); DECL_LINK(LoseFocus, weld::Widget&, void); DECL_LINK(Modify, weld::Entry&, void); +protected: virtual bool KeyInput(const KeyEvent& rKEvt); public: _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
