summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-03-18 17:05:51 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-03-18 17:15:56 +0100
commit9be25f14bdd801106efcfae34c8f1492cddfa714 (patch)
tree84aa1de48abd7163fdb6fcabdf2c08e20bdd603a /basic
parenta09124e6f585a128b4f130804f4a1f1ee8a31c93 (diff)
avoid Wundef for various FIXME, FEATURE_NOT_DONE_YET and what not
Change-Id: I8e409ba63d32dca9a1c7f09d143165d1d702d642
Diffstat (limited to 'basic')
-rw-r--r--basic/source/sbx/sbxcurr.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/sbx/sbxcurr.cxx b/basic/source/sbx/sbxcurr.cxx
index 4df61fc36083..7b4bde230f2e 100644
--- a/basic/source/sbx/sbxcurr.cxx
+++ b/basic/source/sbx/sbxcurr.cxx
@@ -32,7 +32,7 @@ static rtl::OUString ImpCurrencyToString( const sal_Int64 &rVal )
sal_Int64 absVal = isNeg ? -rVal : rVal;
sal_Unicode cDecimalSep = '.';
-#if MAYBEFUTURE
+#ifdef MAYBEFUTURE
sal_Unicode cThousandSep = ',';
ImpGetIntntlSep( cDecimalSep, cThousandSep );
#endif
@@ -51,7 +51,7 @@ static rtl::OUString ImpCurrencyToString( const sal_Int64 &rVal )
if ( !bLessThanOne )
{
nCapacity = initialLen + 1;
-#if MAYBEFUTURE
+#ifdef MAYBEFUTURE
if ( initialLen > 5 )
{
sal_Int32 nThouSeperators = ( initialLen - 5 ) / 3;
@@ -74,7 +74,7 @@ static rtl::OUString ImpCurrencyToString( const sal_Int64 &rVal )
{
if ( nDigitCount == 4 )
aBuf[nInsertIndex--] = cDecimalSep;
-#if MAYBEFUTURE
+#ifdef MAYBEFUTURE
if ( nDigitCount > 4 && ! ( ( nDigitCount - 4 ) % 3) )
aBuf[nInsertIndex--] = cThousandSep;
#endif
@@ -110,7 +110,7 @@ static sal_Int64 ImpStringToCurrency( const rtl::OUString &rStr )
sal_Unicode cDeciPnt = sal_Unicode('.');
sal_Unicode c1000Sep = sal_Unicode(',');
-#if MAYBEFUTURE
+#ifdef MAYBEFUTURE
sal_Unicode cLocaleDeciPnt, cLocale1000Sep;
ImpGetIntntlSep( cLocaleDeciPnt, cLocale1000Sep );