summaryrefslogtreecommitdiff
path: root/pyuno
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@suse.cz>2013-03-18 17:03:23 +0100
committerLuboš Luňák <l.lunak@suse.cz>2013-03-18 17:15:56 +0100
commita09124e6f585a128b4f130804f4a1f1ee8a31c93 (patch)
tree10fc0e44fa4750708932da53c5156cdd5fbd93b0 /pyuno
parent6104b4306dafa5315cf4a987b3b2f89f64de79f0 (diff)
avoid Wundef in cases where the usage seems otherwise ok
Change-Id: Iabccc31c59cec32235661f5225f45bb13f76a68f
Diffstat (limited to 'pyuno')
-rw-r--r--pyuno/source/loader/pyuno_loader.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/loader/pyuno_loader.cxx b/pyuno/source/loader/pyuno_loader.cxx
index 329a1c7f4c35..3905360818ee 100644
--- a/pyuno/source/loader/pyuno_loader.cxx
+++ b/pyuno/source/loader/pyuno_loader.cxx
@@ -200,7 +200,7 @@ Reference< XInterface > CreateInstance( const Reference< XComponentContext > & c
if( !pythonPath.isEmpty() )
prependPythonPath( pythonPath );
-#if WNT
+#ifdef WNT
//extend PATH under windows to include the branddir/program so ssl libs will be found
//for use by terminal mailmerge dependency _ssl.pyd
rtl::OUString sEnvName(RTL_CONSTASCII_USTRINGPARAM("PATH"));