diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-16 11:06:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2019-11-16 12:27:59 +0100 |
commit | 03feda2465c7a18d6bac5781510ace2eabc40379 (patch) | |
tree | d0d61ef816822984e75bbba06675b281f8f1b910 /include | |
parent | 1b0a9a99709522cb4a7d189824ec5359ea430ff5 (diff) |
loplugin:unusedfields
Change-Id: I021cd75685a091c1afd3ff3c144def6f9a784bee
Reviewed-on: https://gerrit.libreoffice.org/82972
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/svtools/inettbc.hxx | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/svtools/inettbc.hxx b/include/svtools/inettbc.hxx index 62e4cf167f1b..3791632555ec 100644 --- a/include/svtools/inettbc.hxx +++ b/include/svtools/inettbc.hxx @@ -37,15 +37,12 @@ class SVT_DLLPUBLIC SvtURLBox : public ComboBox friend class SvtMatchContext_Impl; friend class SvtURLBox_Impl; Link<SvtURLBox*,void> aOpenHdl; - OUString aBaseURL; OUString aPlaceHolder; rtl::Reference< SvtMatchContext_Impl > pCtx; std::unique_ptr<SvtURLBox_Impl> pImpl; INetProtocol eSmartProtocol; bool bAutoCompleteMode : 1; - bool bOnlyDirectories : 1; bool bHistoryDisabled : 1; - bool bNoSelection : 1; bool bIsAutoCompleteEnabled : 1; SVT_DLLPRIVATE bool ProcessKey( const vcl::KeyCode& rCode ); @@ -65,7 +62,6 @@ public: virtual ~SvtURLBox() override; virtual void dispose() override; - const OUString& GetBaseURL() const { return aBaseURL; } void SetOpenHdl( const Link<SvtURLBox*,void>& rLink ) { aOpenHdl = rLink; } const Link<SvtURLBox*,void>& GetOpenHdl() const { return aOpenHdl; } INetProtocol GetSmartProtocol() const { return eSmartProtocol; } |