summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-11-19 11:38:40 +0000
committerCaolán McNamara <caolanm@redhat.com>2019-11-22 18:02:12 +0100
commit1efb579ec5c8524aef27da921ed192f5ae87d27c (patch)
tree1116a5829d8b06e54934a5916f6a9bc887a1b47d /include
parenttdf#128862: fix HSQLDB odb-files with apostrophe crash (diff)
downloadcore-1efb579ec5c8524aef27da921ed192f5ae87d27c.tar.gz
core-1efb579ec5c8524aef27da921ed192f5ae87d27c.zip
up/down in ArgEdit doesn't do anything
but it should cycle through the arguments Reviewed-on: https://gerrit.libreoffice.org/83192 Tested-by: Jenkins Reviewed-by: Eike Rathke <erack@redhat.com> (cherry picked from commit 7a73a586571a8242d9a49051adc62ef7c1c43e86) Change-Id: Ifa398039e77d536a0df021b1a18e06d6df673980 Reviewed-on: https://gerrit.libreoffice.org/83214 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/formula/funcutl.hxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/formula/funcutl.hxx b/include/formula/funcutl.hxx
index 7809db0b91a8..a33c1f6406b5 100644
--- a/include/formula/funcutl.hxx
+++ b/include/formula/funcutl.hxx
@@ -49,15 +49,17 @@ private:
DECL_LINK( UpdateHdl, Timer*, void );
protected:
- DECL_LINK(KeyInput, const KeyEvent&, bool);
+ DECL_LINK(KeyInputHdl, const KeyEvent&, bool);
DECL_LINK(GetFocus, weld::Widget&, void);
DECL_LINK(LoseFocus, weld::Widget&, void);
DECL_LINK(Modify, weld::Entry&, void);
+ virtual bool KeyInput(const KeyEvent& rKEvt);
+
public:
RefEdit(std::unique_ptr<weld::Entry> xControl);
weld::Entry* GetWidget() const { return xEntry.get(); }
- ~RefEdit();
+ virtual ~RefEdit();
void SetRefString( const OUString& rStr );