diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-22 20:57:11 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-07-22 21:03:55 +0900 |
commit | bddd4d45989067e58589519c497e03ff443094e9 (patch) | |
tree | 41e4eadda19dab42bd976115eef7562b36e287eb /basic/source/sbx | |
parent | fb7b24dc5affb4f29f61a8716c97370951ccba80 (diff) |
Mark as const
Change-Id: I2746b92b1360c3c181879a81f653c44ef609f351
Diffstat (limited to 'basic/source/sbx')
-rw-r--r-- | basic/source/sbx/sbxvar.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/sbx/sbxvar.cxx b/basic/source/sbx/sbxvar.cxx index b6927200fb03..6c4c09b72e6d 100644 --- a/basic/source/sbx/sbxvar.cxx +++ b/basic/source/sbx/sbxvar.cxx @@ -244,7 +244,7 @@ void SbxVariable::SetName( const OUString& rName ) const OUString& SbxVariable::GetName( SbxNameType t ) const { - static char cSuffixes[] = " %&!#@ $"; + static const char cSuffixes[] = " %&!#@ $"; if( t == SbxNAME_NONE ) { return maName; |