diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-07 12:12:58 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-07 16:03:10 +0100 |
commit | efa883f0585b0824091c1383ab318c671f83cd28 (patch) | |
tree | 32cb13362b0ed8b700823351ca4d8459d9779c01 /include/svtools | |
parent | 36deee8c8d86ff45602ea3119a6628cc5bceed7a (diff) |
rename URLBox back to SvtURLBox
Change-Id: Icd90eeb492002c45ddd8ff562a6da411abead122
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88185
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/inettbc.hxx | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/svtools/inettbc.hxx b/include/svtools/inettbc.hxx index 08893b3e977d..57439cf3ebac 100644 --- a/include/svtools/inettbc.hxx +++ b/include/svtools/inettbc.hxx @@ -28,19 +28,18 @@ #include <vcl/idle.hxx> #include <vcl/weld.hxx> -class MatchContext_Impl; class SvtMatchContext_Impl; class SvtURLBox_Impl; -class SVT_DLLPUBLIC URLBox +class SVT_DLLPUBLIC SvtURLBox { - friend class MatchContext_Impl; + friend class SvtMatchContext_Impl; friend class SvtURLBox_Impl; Idle aChangedIdle; OUString aBaseURL; OUString aPlaceHolder; - rtl::Reference< MatchContext_Impl > pCtx; + rtl::Reference<SvtMatchContext_Impl> pCtx; std::unique_ptr<SvtURLBox_Impl> pImpl; INetProtocol eSmartProtocol; bool bOnlyDirectories : 1; @@ -61,8 +60,8 @@ class SVT_DLLPUBLIC URLBox SVT_DLLPRIVATE void Init(); public: - URLBox(std::unique_ptr<weld::ComboBox> xWidget); - ~URLBox(); + SvtURLBox(std::unique_ptr<weld::ComboBox> xWidget); + ~SvtURLBox(); void set_entry_text(const OUString& rStr) { m_xWidget->set_entry_text(rStr); } void show() { m_xWidget->show(); } |