summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2021-11-24 17:07:29 +0000
committerAndras Timar <andras.timar@collabora.com>2022-04-06 10:49:00 +0200
commitad47ed1b740ba94c90ff659872282974f364cac8 (patch)
tree1e39a216d64d7805d86ebc22e389a360703b3490
parenthwpfilter: why isn't that path string null terminated (diff)
downloadcore-ad47ed1b740ba94c90ff659872282974f364cac8.tar.gz
core-ad47ed1b740ba94c90ff659872282974f364cac8.zip
Resolves: tdf#145840 call ToggledDavsHdl on setting checkbox state
Change-Id: Ia2a735255b94fd3a097081950e2145e07b4b3b63 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125723 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de> (cherry picked from commit b23a16ff513369b6bf1f534a387d911b6336c9c8)
-rw-r--r--svtools/source/dialogs/ServerDetailsControls.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/svtools/source/dialogs/ServerDetailsControls.cxx b/svtools/source/dialogs/ServerDetailsControls.cxx
index bfbc2e21593b..b3724f87ee00 100644
--- a/svtools/source/dialogs/ServerDetailsControls.cxx
+++ b/svtools/source/dialogs/ServerDetailsControls.cxx
@@ -175,11 +175,13 @@ bool DavDetailsContainer::verifyScheme( const OUString& rScheme )
{
bValid = true;
m_pDialog->m_xCBDavs->set_active(false);
+ ToggledDavsHdl(*m_pDialog->m_xCBDavs);
}
else if ( rScheme == "https://" )
{
bValid = true;
m_pDialog->m_xCBDavs->set_active(true);
+ ToggledDavsHdl(*m_pDialog->m_xCBDavs);
}
return bValid;
}