summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-09-10 20:50:39 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-09-10 21:02:18 +0200
commit8243dd551e47182e4be429ab61f0a398044d3aa1 (patch)
tree53553b72dc0717db6e3cd8fddaee3e1eabeec406 /sd
parentca247672c53418eb46c574e8ce5eae453b1969bd (diff)
const
Change-Id: I0fdc9fd7592bae44e54c8e68c67f31ee0767d26e
Diffstat (limited to 'sd')
-rw-r--r--sd/source/core/sdpage.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sd/source/core/sdpage.cxx b/sd/source/core/sdpage.cxx
index 6e21aef0fde6..099e8aa82382 100644
--- a/sd/source/core/sdpage.cxx
+++ b/sd/source/core/sdpage.cxx
@@ -852,11 +852,11 @@ void SdPage::CreateTitleAndLayout(sal_Bool bInit, sal_Bool bCreate )
namespace {
-const char* PageKindVector[] = {
- "PK_STANDARD","PK_NOTES" , "PK_HANDOUT"
+const char* const PageKindVector[] = {
+ "PK_STANDARD", "PK_NOTES", "PK_HANDOUT"
};
-const char* PresObjKindVector[] = {
+const char* const PresObjKindVector[] = {
"PRESOBJ_NONE", "PRESOBJ_TITLE", "PRESOBJ_OUTLINE",
"PRESOBJ_TEXT" ,"PRESOBJ_GRAPHIC" , "PRESOBJ_OBJECT",
"PRESOBJ_CHART", "PRESOBJ_ORGCHART", "PRESOBJ_TABLE",