sw/source/ui/fldui/fldedt.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit a799a6b395a7b5049323beb6f6548675c8c01298 Author: Stephan Bergmann <[email protected]> AuthorDate: Thu Nov 13 10:16:38 2025 +0100 Commit: Stephan Bergmann <[email protected]> CommitDate: Thu Nov 13 23:39:22 2025 +0100 Emscripten: Avoid -Werror,-Wswitch Change-Id: Iba6fa6bc31cf3b6147d8c8908044c6ac273de5cb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/193943 Reviewed-by: Stephan Bergmann <[email protected]> Tested-by: Jenkins diff --git a/sw/source/ui/fldui/fldedt.cxx b/sw/source/ui/fldui/fldedt.cxx index 7a72adff08ad..9050dac7b4b2 100644 --- a/sw/source/ui/fldui/fldedt.cxx +++ b/sw/source/ui/fldui/fldedt.cxx @@ -206,12 +206,12 @@ SfxTabPage* SwFieldEditDlg::CreatePage(SwFieldGroup nGroup) xTabPage = SwFieldDokInfPage::Create(get_content_area(), this, pSet); } break; -#if HAVE_FEATURE_DBCONNECTIVITY && !ENABLE_FUZZERS case SwFieldGroup::Database: +#if HAVE_FEATURE_DBCONNECTIVITY && !ENABLE_FUZZERS xTabPage = SwFieldDBPage::Create(get_content_area(), this, nullptr); static_cast<SwFieldDBPage*>(xTabPage.get())->SetWrtShell(*m_pSh); - break; #endif + break; case SwFieldGroup::UserVariable: xTabPage = SwFieldVarPage::Create(get_content_area(), this, nullptr); break;
