postfixing export symbols

This commit is contained in:
Daniel Boelzle 2000-12-15 07:53:10 +00:00
parent c3318a059c
commit b036f1049b

View file

@ -2,9 +2,9 @@
*
* $RCSfile: dllcomponentloader.cxx,v $
*
* $Revision: 1.5 $
* $Revision: 1.6 $
*
* last change: $Author: dbo $ $Date: 2000-12-14 16:23:39 $
* last change: $Author: dbo $ $Date: 2000-12-15 08:53:10 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@ -363,8 +363,8 @@ static OUString getMacSymbolName( const OUString & rLibName, const char * pSymNa
sal_Int32 nEnd = rLibName.indexOf( (sal_Unicode)'.', nStart );
OSL_ASSERT( nEnd > nStart );
OUStringBuffer buf( 16 );
buf.append( rLibName.copy( nStart, nEnd - nStart ) );
buf.appendAscii( pSymName );
buf.append( rLibName.copy( nStart, nEnd - nStart ) );
return buf.makeStringAndClear();
}
#endif