summaryrefslogtreecommitdiff
path: root/basic/source/sbx/sbxdec.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-02-16 11:26:51 +0200
committerMichael Stahl <mstahl@redhat.com>2016-02-16 10:37:55 +0000
commitce43d0ae9279edbf1ad108fe0d8325327a038d49 (patch)
treea0fbf7bbd608d1185005a0de36496c6f3656e798 /basic/source/sbx/sbxdec.hxx
parent049cf885c6e6c12ac9fa20bcb4ca1472de5b9115 (diff)
use consistent #define checks for the Windows platform
stage 1 of replacing usage of various checks for the windows platform with the compiler-defined '_WIN32' macro Change-Id: Iece73abdee530937e0737190b1aa97a46cd3075f Reviewed-on: https://gerrit.libreoffice.org/22390 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'basic/source/sbx/sbxdec.hxx')
-rw-r--r--basic/source/sbx/sbxdec.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/sbx/sbxdec.hxx b/basic/source/sbx/sbxdec.hxx
index 957ffd03c0d5..eb71f2c9f50f 100644
--- a/basic/source/sbx/sbxdec.hxx
+++ b/basic/source/sbx/sbxdec.hxx
@@ -45,7 +45,7 @@ class SbxDecimal
{
friend void releaseDecimalPtr( SbxDecimal*& rpDecimal );
-#ifdef WIN32
+#ifdef _WIN32
DECIMAL maDec;
#endif
sal_Int32 mnRefCount;
@@ -75,7 +75,7 @@ public:
bool setString( OUString* pOUString );
void setDecimal( SbxDecimal* pDecimal )
{
-#ifdef WIN32
+#ifdef _WIN32
if( pDecimal )
maDec = pDecimal->maDec;
#else