diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-23 13:13:28 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2016-06-24 10:51:45 +0000 |
commit | 920d4463f6e59b815852c173e2974ffc7b4bb284 (patch) | |
tree | ac56efa2d79ad622f261e8664a57afa7c7ea0e49 /include/vcl/edit.hxx | |
parent | 2b7109a12ab772bf53766d6e06b422c8e687d482 (diff) |
loplugin:singlevalfields in vcl(part1)
Change-Id: I0031199937cc95793951a070c4b3d8910933e69f
Reviewed-on: https://gerrit.libreoffice.org/26595
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/vcl/edit.hxx')
-rw-r--r-- | include/vcl/edit.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/vcl/edit.hxx b/include/vcl/edit.hxx index 4c9424c4c549..aecb918efc77 100644 --- a/include/vcl/edit.hxx +++ b/include/vcl/edit.hxx @@ -62,8 +62,6 @@ public: virtual ~TextFilter(); }; -enum class AutocompleteAction { KeyInput, TabForward, TabBackward }; - class Timer; class VCL_DLLPUBLIC Edit : public Control, public vcl::unohelper::DragAndDropClient @@ -84,7 +82,6 @@ private: sal_Int32 mnMaxTextLen; sal_Int32 mnWidthInChars; sal_Int32 mnMaxWidthChars; - AutocompleteAction meAutocompleteAction; sal_Unicode mcEchoChar; bool mbModified:1, mbInternModified:1, @@ -249,7 +246,6 @@ public: void SetAutocompleteHdl( const Link<Edit&,void>& rLink ) { maAutocompleteHdl = rLink; } const Link<Edit&,void>& GetAutocompleteHdl() const { return maAutocompleteHdl; } - AutocompleteAction GetAutocompleteAction() const { return meAutocompleteAction; } virtual Size CalcMinimumSize() const; virtual Size CalcMinimumSizeForText(const OUString &rString) const; |