use SAL_CONFIGFILE macro

Change-Id: I958a961993aaf920c52b5d7b8eea6666656b4ddd
This commit is contained in:
David Tardon 2013-04-28 11:18:35 +02:00
parent c72bb2da7b
commit f7cea8fb5b

View file

@ -2076,19 +2076,11 @@ void SfxObjectShell::StoreLog()
if ( pImp->m_xLogRing.is() )
{
#ifdef WNT
OUString aFileURL = OUString( "${$BRAND_BASE_DIR/program/bootstrap.ini:UserInstallation}" );
#else
OUString aFileURL = OUString( "${$BRAND_BASE_DIR/program/bootstraprc:UserInstallation}" );
#endif
OUString aFileURL = OUString( "${$BRAND_BASE_DIR/program/" SAL_CONFIGFILE("bootstrap") ":UserInstallation}" );
::rtl::Bootstrap::expandMacros( aFileURL );
#ifdef WNT
OUString aBuildID = OUString( "${$BRAND_BASE_DIR/program/setup.ini:buildid}" );
#else
OUString aBuildID = OUString( "${$BRAND_BASE_DIR/program/setuprc:buildid}" );
#endif
OUString aBuildID = OUString( "${$BRAND_BASE_DIR/program/" SAL_CONFIGFILE("setup") ":buildid}" );
::rtl::Bootstrap::expandMacros( aBuildID );