From f7cea8fb5b5d92ff6b8ac09b38d02badaaf7db04 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Sun, 28 Apr 2013 11:18:35 +0200 Subject: [PATCH] use SAL_CONFIGFILE macro Change-Id: I958a961993aaf920c52b5d7b8eea6666656b4ddd --- sfx2/source/doc/objmisc.cxx | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/sfx2/source/doc/objmisc.cxx b/sfx2/source/doc/objmisc.cxx index 7ce3d1dfb07e..1bde2aef2167 100644 --- a/sfx2/source/doc/objmisc.cxx +++ b/sfx2/source/doc/objmisc.cxx @@ -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 );