summaryrefslogtreecommitdiff
path: root/cui/source/options/optlingu.cxx
diff options
context:
space:
mode:
authorBayram Çiçek <bayramcicek2125@gmail.com>2023-09-20 14:37:08 +0300
committerAndreas Heinisch <andreas.heinisch@yahoo.de>2023-09-25 11:05:25 +0200
commit0eb05b47a6d89fdfc533515483584fc739962b65 (patch)
treea2a3d0e2708999e1865eb0ba56ecfb3836aa4f28 /cui/source/options/optlingu.cxx
parenta499a3f2486b44c8b1918e69490f9d26bdb0e1f5 (diff)
tdf#49895: search in Options: check if label exists (related to tdf#157266)
- since ids in ui files can be changed or removed, we have to check if they are exits or not, to prevent any crash or misbehavior. - Proper solution will be iterating over the widget ids and collecting their strings without based on a list of identifiers. Change-Id: I2088af6842ad0acd00838a37295dc2e6140096f2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/157103 Reviewed-by: Andreas Heinisch <andreas.heinisch@yahoo.de> Tested-by: Andreas Heinisch <andreas.heinisch@yahoo.de>
Diffstat (limited to 'cui/source/options/optlingu.cxx')
-rw-r--r--cui/source/options/optlingu.cxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/cui/source/options/optlingu.cxx b/cui/source/options/optlingu.cxx
index 6bc7d5a7e0ed..1fda06663fa8 100644
--- a/cui/source/options/optlingu.cxx
+++ b/cui/source/options/optlingu.cxx
@@ -927,7 +927,10 @@ OUString SvxLinguTabPage::GetAllStrings()
OUString labels[] = { "lingumodulesft", "lingudictsft", "label4" };
for (const auto& label : labels)
- sAllStrings += m_xBuilder->weld_label(label)->get_label() + " ";
+ {
+ if (const auto& pString = m_xBuilder->weld_label(label))
+ sAllStrings += pString->get_label() + " ";
+ }
sAllStrings += m_xMoreDictsLink->get_label() + " ";