use consistent #define checks for the Windows platform
stage 2 of replacing usage of various checks for the windows platform with the compiler-defined '_WIN32' macro In this stage we focus on replacing usage of the WIN macro Change-Id: Ie8a4a63198a6de96bd158ecd707dadafb9c8ea84 Reviewed-on: https://gerrit.libreoffice.org/22393 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
This commit is contained in:
committed by
Noel Grandin
parent
d6bf086012
commit
2087484c65
@@ -81,7 +81,7 @@ void VBATest::testMiscVBAFunctions()
|
||||
void VBATest::testMiscOLEStuff()
|
||||
{
|
||||
// not much point even trying to run except on windows
|
||||
#if defined(WNT)
|
||||
#if defined(_WIN32)
|
||||
// test if we have the necessary runtime environment
|
||||
// to run the OLE tests.
|
||||
uno::Reference< lang::XMultiServiceFactory > xOLEFactory;
|
||||
|
Reference in New Issue
Block a user