diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-04 09:45:49 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-04 09:46:35 +0900 |
commit | be8aee915815ba77c366d88c07626787e2f74443 (patch) | |
tree | e70cfee6dfbd1549e7722d107eac46b2b8fd4bb0 /svx/source/fmcomp | |
parent | e703b429cf448deddc7682a33c3e6221889efe98 (diff) |
Mark as const
Change-Id: I24f04c541af1b93115781b4f4be4f01f137c481b
Diffstat (limited to 'svx/source/fmcomp')
-rw-r--r-- | svx/source/fmcomp/fmgridif.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/fmcomp/fmgridif.cxx b/svx/source/fmcomp/fmgridif.cxx index 53781d2c04fc..32350b7c851f 100644 --- a/svx/source/fmcomp/fmgridif.cxx +++ b/svx/source/fmcomp/fmgridif.cxx @@ -1272,7 +1272,7 @@ void FmXGridPeer::removeModifyListener(const Reference< ::com::sun::star::util:: Sequence< sal_Bool > SAL_CALL FmXGridPeer::queryFieldDataType( const Type& xType ) throw(RuntimeException) { // eine 'Konvertierungstabelle' - static sal_Bool bCanConvert[LAST_KNOWN_TYPE][4] = + static const sal_Bool bCanConvert[LAST_KNOWN_TYPE][4] = { { sal_False, sal_False, sal_False, sal_False }, // FormComponentType::CONTROL { sal_False, sal_False, sal_False, sal_False }, // FormComponentType::COMMANDBUTTON @@ -2767,7 +2767,7 @@ Sequence< ::com::sun::star::util::URL>& FmXGridPeer::getSupportedURLs() static Sequence< ::com::sun::star::util::URL> aSupported; if (aSupported.getLength() == 0) { - static OUString sSupported[] = { + static const OUString sSupported[] = { FMURL_RECORD_MOVEFIRST, FMURL_RECORD_MOVEPREV, FMURL_RECORD_MOVENEXT, |