diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-04-08 22:23:06 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-04-11 14:32:29 +0200 |
commit | a2f91994dffb5945ff70de864591d594d2fe7f59 (patch) | |
tree | 309076940195087801ef8dc9c9515941b0bc291e /include | |
parent | 662035ed6334711d053cb4a7b2d37ff95c1f6838 (diff) |
Avoid reserved identifier
Change-Id: I6dfb2961adeb412405c58e0a0b51e130cbd3e0c3
Diffstat (limited to 'include')
-rw-r--r-- | include/basic/sbxform.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/basic/sbxform.hxx b/include/basic/sbxform.hxx index ff32b37c7fbb..4832ed310224 100644 --- a/include/basic/sbxform.hxx +++ b/include/basic/sbxform.hxx @@ -73,7 +73,7 @@ a) use sprintf() b) use log10() and pow() digit */ -#define _with_sprintf // use a) +#define with_sprintf_ // use a) #include <rtl/ustring.hxx> #include <rtl/ustrbuf.hxx> @@ -115,7 +115,7 @@ class BASIC_DLLPUBLIC SbxBasicFormater { BASIC_DLLPRIVATE void StrRoundDigit( OUStringBuffer& sStrg, short nPos ); BASIC_DLLPRIVATE void ParseBack( OUStringBuffer& sStrg, const OUString& sFormatStrg, short nFormatPos ); -#ifdef _with_sprintf +#ifdef with_sprintf_ // Methods for string conversion with sprintf(): BASIC_DLLPRIVATE void InitScan( double _dNum ); BASIC_DLLPRIVATE void InitExp( double _dNewExp ); |