diff options
author | Sahil Gautam <sahil@libreoffice.org> | 2024-10-28 01:33:32 +0530 |
---|---|---|
committer | Heiko Tietze <heiko.tietze@documentfoundation.org> | 2024-10-31 10:09:26 +0100 |
commit | 965287a9edb982b4f1857e7a57a73f0bdfd7e330 (patch) | |
tree | 8c58ce7d7ecf8ba960fc1a5aa8a5100405b0abe1 /sc/source/ui/inc | |
parent | 8328c69858e7be8dbf82a8ec66948a3e1534a852 (diff) |
tdf#85976 Make labels more intuitive in "Duplicate Records Dialog"
Records is not a very intuitive label for the the treeview section of
the dialog. Change to "Rows: " and "Columns: " based on what's being
displayed in the dialog
Change "Compare: " to "Compare by: "
Change-Id: Idff5f4a6935856f2c5a16f5b45bf8ce0ba169ca4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175704
Tested-by: Jenkins
Reviewed-by: Heiko Tietze <heiko.tietze@documentfoundation.org>
Diffstat (limited to 'sc/source/ui/inc')
-rw-r--r-- | sc/source/ui/inc/duplicaterecordsdlg.hxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sc/source/ui/inc/duplicaterecordsdlg.hxx b/sc/source/ui/inc/duplicaterecordsdlg.hxx index 5bf726708b20..706ef3b18d00 100644 --- a/sc/source/ui/inc/duplicaterecordsdlg.hxx +++ b/sc/source/ui/inc/duplicaterecordsdlg.hxx @@ -52,6 +52,7 @@ public: private: void Init(); void SetDialogData(bool bToggle); + void SetDialogLabels(); std::unique_ptr<weld::CheckButton> m_xIncludesHeaders; std::unique_ptr<weld::RadioButton> m_xRadioRow; std::unique_ptr<weld::RadioButton> m_xRadioColumn; @@ -59,6 +60,7 @@ private: std::unique_ptr<weld::RadioButton> m_xRadioRemove; std::unique_ptr<weld::TreeView> m_xCheckList; std::unique_ptr<weld::CheckButton> m_xAllChkBtn; + std::unique_ptr<weld::Label> m_xRecordsLabel; std::unique_ptr<weld::Button> m_xOkBtn; std::unique_ptr<weld::Button> m_xHelpBtn; |