diff options
author | Gert Faller <gertfaller@aliceadsl.fr> | 2010-12-12 09:18:55 +0100 |
---|---|---|
committer | Gert Faller <gertfaller@aliceadsl.fr> | 2010-12-12 09:18:55 +0100 |
commit | 721804e4c5ed5a2f682cc2adc5bec12300149bce (patch) | |
tree | 11771380d0fcd0697bbb0e9a588fe1b6e7e3e3f6 /lotuswordpro | |
parent | d7d787c95a9dc393ca279a0b52c3ad484bf9159a (diff) |
change of __READONLY_DATA define to const
Diffstat (limited to 'lotuswordpro')
-rw-r--r-- | lotuswordpro/source/filter/schxmlwrapper.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lotuswordpro/source/filter/schxmlwrapper.cxx b/lotuswordpro/source/filter/schxmlwrapper.cxx index 869ca0816bf3..7d5fb952968b 100644 --- a/lotuswordpro/source/filter/schxmlwrapper.cxx +++ b/lotuswordpro/source/filter/schxmlwrapper.cxx @@ -134,7 +134,7 @@ #include <com/sun/star/packages/zip/ZipIOException.hpp> #endif -#define XML_STRING(i, x) sal_Char __READONLY_DATA i[sizeof(x)] = x +#define XML_STRING(i, x) sal_Char const i[sizeof(x)] = x #define MAP_LEN(x) x, sizeof(x) - 1 XML_STRING( sXML_metaStreamName, "meta.xml"); |