diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-17 14:58:15 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-17 16:44:10 +0900 |
commit | 029c630a66ae8225e3a7e904d3085dbf79f0d64f (patch) | |
tree | c31cff933d02f9ac82af3c08a3cbaa2264872eb5 /ucb | |
parent | 8b716072410bcfd252739fb953d5ac198e27a895 (diff) |
Mark as const
Change-Id: I59ac01eacf31061093b83ab3057963de7ea4a2e7
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/hierarchy/hierarchycontentcaps.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ucb/source/ucp/hierarchy/hierarchycontentcaps.cxx b/ucb/source/ucp/hierarchy/hierarchycontentcaps.cxx index 5143a2caabee..032c1079e9c7 100644 --- a/ucb/source/ucp/hierarchy/hierarchycontentcaps.cxx +++ b/ucb/source/ucp/hierarchy/hierarchycontentcaps.cxx @@ -221,7 +221,7 @@ uno::Sequence< beans::Property > HierarchyContent::getProperties( if ( isReadOnly() ) { - static beans::Property aFolderPropertyInfoTable[] = + static const beans::Property aFolderPropertyInfoTable[] = { /////////////////////////////////////////////////////////// // Required properties @@ -273,7 +273,7 @@ uno::Sequence< beans::Property > HierarchyContent::getProperties( } else { - static beans::Property aFolderPropertyInfoTable[] = + static const beans::Property aFolderPropertyInfoTable[] = { /////////////////////////////////////////////////////////// // Required properties @@ -334,7 +334,7 @@ uno::Sequence< beans::Property > HierarchyContent::getProperties( // Currently no difference between reonly /read-write // -> all props ar read-only - static beans::Property aRootFolderPropertyInfoTable[] = + static const beans::Property aRootFolderPropertyInfoTable[] = { /////////////////////////////////////////////////////////////// // Required properties |