diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-02 20:35:33 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-03 10:50:18 +0100 |
commit | f612839ed9200a3900ae5c3a2e12beccfa37b11e (patch) | |
tree | aa36c9848d809c40ed20ab5af5b48c056fd47e78 /include/svtools | |
parent | 58715eb09283f3927909f704d94fa00d1cfd5677 (diff) |
rename SvtFontStyleBox back to FontStyleBox
Change-Id: I709f100541964b8740a7d0639a58214b1553458f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87836
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/ctrlbox.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/svtools/ctrlbox.hxx b/include/svtools/ctrlbox.hxx index d5d0f35bc2b6..8036d513ad05 100644 --- a/include/svtools/ctrlbox.hxx +++ b/include/svtools/ctrlbox.hxx @@ -361,11 +361,11 @@ private: FontNameBox& operator =( const FontNameBox& ) = delete; }; -class SVT_DLLPUBLIC SvtFontStyleBox +class SVT_DLLPUBLIC FontStyleBox { std::unique_ptr<weld::ComboBox> m_xComboBox; public: - SvtFontStyleBox(std::unique_ptr<weld::ComboBox> p); + FontStyleBox(std::unique_ptr<weld::ComboBox> p); void Fill(const OUString& rName, const FontList* pList); @@ -379,8 +379,8 @@ public: int get_count() const { return m_xComboBox->get_count(); } int find_text(const OUString& rStr) const { return m_xComboBox->find_text(rStr); } private: - SvtFontStyleBox(const SvtFontStyleBox& ) = delete; - SvtFontStyleBox& operator=(const SvtFontStyleBox&) = delete; + FontStyleBox(const FontStyleBox& ) = delete; + FontStyleBox& operator=(const FontStyleBox&) = delete; }; class SVT_DLLPUBLIC FontSizeBox : public MetricBox |