diff options
author | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-15 22:04:05 +0900 |
---|---|---|
committer | Takeshi Abe <tabe@fixedpoint.jp> | 2013-08-15 22:09:58 +0900 |
commit | 7ef72aefc6f1bf522e0c3f9f2afda5ff7851e35e (patch) | |
tree | eb51b70e78012113d274e3bedc67b6ebc7101c00 /sax | |
parent | 03f973ccefd07dbceaa4993206ee4f2f1296d321 (diff) |
Mark as const
Change-Id: Ic7ee570935b5d827dc01a483877ea5021da5abea
Diffstat (limited to 'sax')
-rw-r--r-- | sax/source/tools/converter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx index 6cfe6880856a..ac1d488ba76d 100644 --- a/sax/source/tools/converter.cxx +++ b/sax/source/tools/converter.cxx @@ -496,7 +496,7 @@ bool Converter::convertColor( sal_Int32& rColor, const OUString& rValue ) return true; } -static sal_Char aHexTab[] = "0123456789abcdef"; +static const sal_Char aHexTab[] = "0123456789abcdef"; /** convert color to string */ void Converter::convertColor( OUStringBuffer& rBuffer, sal_Int32 nColor ) |