summaryrefslogtreecommitdiff
path: root/include/formula
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2019-11-19 11:38:40 +0000
committerEike Rathke <erack@redhat.com>2019-11-19 15:43:36 +0100
commit7a73a586571a8242d9a49051adc62ef7c1c43e86 (patch)
tree4f39abeb0faacd1735f80e67f7835df2ed36419a /include/formula
parentddd2a419c56d8c12b4d10376ecfdde9d87d276e3 (diff)
up/down in ArgEdit doesn't do anything
but it should cycle through the arguments Change-Id: Ifa398039e77d536a0df021b1a18e06d6df673980 Reviewed-on: https://gerrit.libreoffice.org/83192 Tested-by: Jenkins Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'include/formula')
-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 5e4a037c607e..02cf585a771e 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 );