diff options
author | Michael Weghorn <m.weghorn@posteo.de> | 2024-11-30 02:36:07 +0100 |
---|---|---|
committer | Michael Weghorn <m.weghorn@posteo.de> | 2024-11-30 09:41:21 +0100 |
commit | 9ccfc8a719bfcb34baff8559dc33a9cd5b638646 (patch) | |
tree | 5affa91963a75aa93b6aad86ef68dcdbcabf8794 /include/svx/srchdlg.hxx | |
parent | 05c8f91d5abf79f3591b5979ae01a17f2b153880 (diff) |
tdf#130857 Search dialog: Use weld::Container ptr instead of Box
None of the weld::Box methods are used, so having a pointer
to the weld::Container subclass is sufficient in the
"Find and Replace" dialog implementation.
Change-Id: I1219dd657ab8fb6067c90aabdc27b2b84c0a1443
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/177577
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
Diffstat (limited to 'include/svx/srchdlg.hxx')
-rw-r--r-- | include/svx/srchdlg.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svx/srchdlg.hxx b/include/svx/srchdlg.hxx index 1b9a0f067f93..a5ee0f8d8cf1 100644 --- a/include/svx/srchdlg.hxx +++ b/include/svx/srchdlg.hxx @@ -187,7 +187,7 @@ private: std::unique_ptr<weld::Label> m_xSearchAttrText; std::unique_ptr<weld::Label> m_xSearchLabel; std::unique_ptr<weld::Image> m_xSearchIcon; - std::unique_ptr<weld::Box> m_xSearchBox; + std::unique_ptr<weld::Container> m_xSearchBox; std::unique_ptr<weld::Frame> m_xReplaceFrame; std::unique_ptr<weld::ComboBox> m_xReplaceLB; |