summaryrefslogtreecommitdiff
path: root/include/svx/txencbox.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/svx/txencbox.hxx')
-rw-r--r--include/svx/txencbox.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/txencbox.hxx b/include/svx/txencbox.hxx
index 294362cc5f85..4cf66c7c1641 100644
--- a/include/svx/txencbox.hxx
+++ b/include/svx/txencbox.hxx
@@ -92,10 +92,10 @@ public:
class SVX_DLLPUBLIC TextEncodingBox
{
private:
- std::unique_ptr<weld::ComboBoxText> m_xControl;
+ std::unique_ptr<weld::ComboBox> m_xControl;
public:
- TextEncodingBox(std::unique_ptr<weld::ComboBoxText> pControl);
+ TextEncodingBox(std::unique_ptr<weld::ComboBox> pControl);
~TextEncodingBox();
@@ -125,7 +125,7 @@ public:
rtl_TextEncoding GetSelectTextEncoding() const;
- void connect_changed(const Link<weld::ComboBoxText&, void>& rLink) { m_xControl->connect_changed(rLink); }
+ void connect_changed(const Link<weld::ComboBox&, void>& rLink) { m_xControl->connect_changed(rLink); }
};