summaryrefslogtreecommitdiff
path: root/unotools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2015-06-08 17:04:49 +0100
committerCaolán McNamara <caolanm@redhat.com>2015-06-08 17:35:27 +0100
commitf5607ec73e8a54bdde7d1b5280c96ef69484ff16 (patch)
treea1c6e6ed0db10adf9936f992ecfdb34b5b21f235 /unotools
parent079ef12f13d0fcc658127568c7f1e184bb350893 (diff)
add (and call before dtor) Commit to SvtSearchOptions
i.e. follow up to commit 465359c35fcd8c30a2bedd3d0beb07c0c1c36cba Author: Michael Stahl <mstahl@redhat.com> Date: Wed Mar 11 16:39:24 2015 +0100 do not call virtual Commit() from dtors of utl::ConfigItem subclasses ~SvtAppFilterOptions_Impl() demonstrates that this is a bad idea, by not invoking its subclasses' ImplCommit() but its own. to avoid assert in SvtSearchOptions dtor Change-Id: I0eaf93450e1daddb81a9463f2c1df48a334dfb22 (cherry picked from commit 8d5a2116bc198f51ee394ca48c48f04ef4ba1658)
Diffstat (limited to 'unotools')
-rw-r--r--unotools/source/config/searchopt.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/unotools/source/config/searchopt.cxx b/unotools/source/config/searchopt.cxx
index 3c442ab4ad53..97bd3962efb2 100644
--- a/unotools/source/config/searchopt.cxx
+++ b/unotools/source/config/searchopt.cxx
@@ -248,6 +248,11 @@ SvtSearchOptions::~SvtSearchOptions()
delete pImpl;
}
+void SvtSearchOptions::Commit()
+{
+ pImpl->Commit();
+}
+
sal_Int32 SvtSearchOptions::GetTransliterationFlags() const
{
sal_Int32 nRes = 0;