diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-06-13 18:36:53 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-06-14 00:36:42 +0300 |
commit | 705d75cc35905d44007c44bed1a3540be2803c1d (patch) | |
tree | 7b6c02bfea4db0cc67d79fe39ece93b70dafa647 | |
parent | 279ee58b5c3014d1d6b7ebf264e60b8340ff15e3 (diff) |
Revert "Bypass DLL prefix and extension stuff on iOS for now"
Not needed now with a normal SAL_DLLEXTENSION defined for iOS.
This reverts commit dc915ed7fbbbeef9eefbf5bda07289a9462b6904.
-rw-r--r-- | cppuhelper/source/shlib.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx index 56b8025d1..358aac184 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -244,7 +244,6 @@ static OUString makeComponentPath( if (rPath[ rPath.getLength() -1 ] != '/') buf.append( (sal_Unicode) '/' ); } -#ifndef IOS sal_Int32 nEnd = endsWith( rLibName, OUSTR(SAL_DLLEXTENSION) ); if (nEnd < 0) // !endsWith { @@ -257,7 +256,6 @@ static OUString makeComponentPath( buf.appendAscii( RTL_CONSTASCII_STRINGPARAM(SAL_DLLEXTENSION) ); } else // name is completely pre/postfixed -#endif { buf.append( rLibName ); } |