svtools/source/control/inettbc.cxx | 2 +- svx/source/dialog/TableStylesDlg.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)
New commits: commit d5e3aa2372c080b356c0edf6bc9d4e304531cf21 Author: Caolán McNamara <[email protected]> AuthorDate: Mon Feb 16 08:46:43 2026 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Mon Feb 16 11:33:14 2026 +0100 tdf#1681349 Resource leak Change-Id: I321a95086278494c2d524488257c7c390a77a6d3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199454 Reviewed-by: Caolán McNamara <[email protected]> Tested-by: Jenkins diff --git a/svx/source/dialog/TableStylesDlg.cxx b/svx/source/dialog/TableStylesDlg.cxx index fe424a9f29b2..7154cae6db76 100644 --- a/svx/source/dialog/TableStylesDlg.cxx +++ b/svx/source/dialog/TableStylesDlg.cxx @@ -658,7 +658,7 @@ IMPL_LINK_NOARG(SvxTableStylesDlg, BorderLayoutSelHdl, ValueSet*, void) Color aCol = m_xBorderColor->GetSelectEntryColor(); if (aCol.IsTransparent()) aCol = COL_BLACK; - aBorder = *new editeng::SvxBorderLine(&aCol, THIN); + aBorder = editeng::SvxBorderLine(&aCol, THIN); } aBox.SetLine(nullptr, SvxBoxItemLine::TOP); commit 1e22677d763a11b69dcf157d8e867ae8a4e1e14f Author: Caolán McNamara <[email protected]> AuthorDate: Mon Feb 16 08:38:37 2026 +0000 Commit: Caolán McNamara <[email protected]> CommitDate: Mon Feb 16 11:33:08 2026 +0100 Resolves: tdf#160671 History is not shown after second opening of dropdown of the internal file dialogs. Restore the picklist instead of blanking it. Change-Id: I2fdb45532bae59dbfa7ccc8754af9104a0d0c6e7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/199452 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/svtools/source/control/inettbc.cxx b/svtools/source/control/inettbc.cxx index bc3cb6ece74b..406905655345 100644 --- a/svtools/source/control/inettbc.cxx +++ b/svtools/source/control/inettbc.cxx @@ -838,7 +838,7 @@ IMPL_LINK_NOARG(SvtURLBox, TryAutoComplete, Timer *, void) pCtx->launch(); } else - m_xWidget->clear(); + UpdatePicklistForSmartProtocol_Impl(); } SvtURLBox::SvtURLBox(std::unique_ptr<weld::ComboBox> pWidget)
