diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2019-03-05 07:28:32 +0100 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2019-03-05 08:17:14 +0100 |
commit | ac69149beff331755be67220a85a2e7b0644384f (patch) | |
tree | 576a832a13688ededc429395e8154459284af6b5 /sfx2/source/appl/appuno.cxx | |
parent | 8f56281ad5d82c68e1ce5b19e4839fc8e6d5c77a (diff) |
nMediaArgsCount is const
Change-Id: Ideab44b6712013199cd22216bfe5875c0ec0c545
Reviewed-on: https://gerrit.libreoffice.org/68727
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'sfx2/source/appl/appuno.cxx')
-rw-r--r-- | sfx2/source/appl/appuno.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/appl/appuno.cxx b/sfx2/source/appl/appuno.cxx index 772807cca9a9..d7b1aa528655 100644 --- a/sfx2/source/appl/appuno.cxx +++ b/sfx2/source/appl/appuno.cxx @@ -113,7 +113,7 @@ SfxFormalArgument const aFormalArgs[] = { { reinterpret_cast<SfxType*>(&aSfxStringItem_Impl), "RedactionStyle", SID_REDACTION_STYLE }, }; -static sal_uInt16 nMediaArgsCount = SAL_N_ELEMENTS(aFormalArgs); +static sal_uInt16 const nMediaArgsCount = SAL_N_ELEMENTS(aFormalArgs); static char const sTemplateRegionName[] = "TemplateRegionName"; static char const sTemplateName[] = "TemplateName"; |