diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-03-28 15:13:04 +0100 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-03-28 20:46:30 +0100 |
commit | 0ce23697cf9ab8e590b41bf5eced515d5f0eb9d9 (patch) | |
tree | a6e7d0b45afbf6523290bffa1a8aa1249e92d455 /cui/source | |
parent | 128274d59847288d4c3463fea42b6f57ec089ec0 (diff) |
-Werror,-Wunused-parameter
Change-Id: Ic7d32200332554b0a615120f69e4c86e612450c0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/165466
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'cui/source')
-rw-r--r-- | cui/source/factory/dlgfact.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx index 2a71808ae59d..9c422c4f71a6 100644 --- a/cui/source/factory/dlgfact.cxx +++ b/cui/source/factory/dlgfact.cxx @@ -1540,6 +1540,7 @@ AbstractDialogFactory_Impl::CreateWhatsNewDialog(weld::Window* pParent, const bo std::make_shared<WhatsNewDialog>(pParent, bWelcome)); #else (void) pParent; + (void) bWelcome; return nullptr; #endif } |