sc/sdi/tabvwsh.sdi | 1 + sc/source/ui/view/tabvwsh3.cxx | 2 ++ 2 files changed, 3 insertions(+)
New commits: commit 0697364eaa077518950528244ecd0fd924acb97a Author: Banobe Pascal <[email protected]> AuthorDate: Tue Feb 3 17:48:12 2026 +0300 Commit: Samuel Mehrbrodt <[email protected]> CommitDate: Mon Mar 2 08:34:56 2026 +0100 sc: Enable UNO command 'Add Theme' command in Calc Some of this commit has already been merged (presumably accidentally) with 2e9980605574f1be8e773657cf4c8e18cadc6a64 Signed-off-by: Banobe Pascal <[email protected]> Change-Id: Ifc7a0f857d5558aab4b4f72045092486edaf9b88 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/198611 Reviewed-by: Szymon Kłos <[email protected]> Tested-by: Jenkins CollaboraOffice <[email protected]> Reviewed-on: https://gerrit.libreoffice.org/c/core/+/200766 Reviewed-by: Samuel Mehrbrodt <[email protected]> diff --git a/sc/sdi/tabvwsh.sdi b/sc/sdi/tabvwsh.sdi index fbb237e2ffae..f7086b8aedc7 100644 --- a/sc/sdi/tabvwsh.sdi +++ b/sc/sdi/tabvwsh.sdi @@ -224,6 +224,7 @@ interface TableEditView SID_PRINTPREVIEW [ ExecMethod = Execute; StateMethod = GetState; ] SID_THEME_DIALOG [ ExecMethod = Execute; StateMethod = GetState; ] SID_APPLY_THEME [ ExecMethod = Execute; StateMethod = GetState; ] + SID_ADD_THEME [ ExecMethod = Execute; StateMethod = GetState; ] SID_NAVIGATOR_SELECT_COMMENT [ ExecMethod = ExecNavigatorWin; ] diff --git a/sc/source/ui/view/tabvwsh3.cxx b/sc/source/ui/view/tabvwsh3.cxx index 5dd7a637882f..76b6bd1facd3 100644 --- a/sc/source/ui/view/tabvwsh3.cxx +++ b/sc/source/ui/view/tabvwsh3.cxx @@ -66,6 +66,8 @@ #include <svx/dialog/ThemeDialog.hxx> #include <ThemeColorChanger.hxx> +#include <svx/dialog/ThemeColorEditDialog.hxx> +#include <svx/ColorSets.hxx> #include <dialogs/SelectSheetViewDialog.hxx> namespace
