Kaydet (Commit) a44330b9 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Bypass DLL prefix and extension stuff on iOS for now

üst 4dafde87
......@@ -244,6 +244,7 @@ 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
{
......@@ -256,6 +257,7 @@ static OUString makeComponentPath(
buf.appendAscii( RTL_CONSTASCII_STRINGPARAM(SAL_DLLEXTENSION) );
}
else // name is completely pre/postfixed
#endif
{
buf.append( rLibName );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment