diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2018-01-18 16:39:59 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2018-01-19 08:19:38 +0100 |
commit | 697f01e052ae73e88d7e1a37386f2648d57e12e2 (patch) | |
tree | 6dc879a6307ad905b909e0eb88bb143899806279 /io/test | |
parent | 161af2120f41f34fe562f677907ccfba41f7012a (diff) |
SAL_W32 is just an alias for _WIN32
...so consistently use the latter instead of the former
Change-Id: I144d5e7c472632f93b2258461510346bc85892d9
Reviewed-on: https://gerrit.libreoffice.org/48135
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'io/test')
-rw-r--r-- | io/test/testcomponent.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/io/test/testcomponent.cxx b/io/test/testcomponent.cxx index fd1e3d7e5e31..738f47d4f54c 100644 --- a/io/test/testcomponent.cxx +++ b/io/test/testcomponent.cxx @@ -94,7 +94,7 @@ int main (int argc, char **argv) sTestName = "test"; sTestName += argv[2]; -#if defined(SAL_W32) +#if defined(_WIN32) OUString aDllName = OStringToOUString( sTestName , RTL_TEXTENCODING_ASCII_US ); #else OUString aDllName("lib"); |