From 6943c7b11c92f3d4971704abcb213f57eaa4e115 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 27 Dec 2012 14:03:18 +0200 Subject: Sigh, my git grep regexps missed some cases Change-Id: I085f14f40fb83cba171b35b14cf7c0d99091fc00 --- basic/source/runtime/iosys.cxx | 2 +- basic/source/runtime/runtime.cxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'basic') diff --git a/basic/source/runtime/iosys.cxx b/basic/source/runtime/iosys.cxx index 124608eaafc1..60ed9145612e 100644 --- a/basic/source/runtime/iosys.cxx +++ b/basic/source/runtime/iosys.cxx @@ -842,7 +842,7 @@ void SbiIoSystem::Shutdown() if( !aOut.isEmpty() ) { rtl::OUString aOutStr(rtl::OStringToOUString(aOut, osl_getThreadTextEncoding())); -#if defined GCC +#if defined __GNUC__ Window* pParent = Application::GetDefDialogParent(); MessBox( pParent, WinBits( WB_OK ), OUString(), aOutStr ).Execute(); #else diff --git a/basic/source/runtime/runtime.cxx b/basic/source/runtime/runtime.cxx index 122357733cae..f8309a0bf1af 100644 --- a/basic/source/runtime/runtime.cxx +++ b/basic/source/runtime/runtime.cxx @@ -555,7 +555,7 @@ SbiRuntime::SbiRuntime( SbModule* pm, SbMethod* pe, sal_uInt32 nStart ) nOps = 0; refExprStk = new SbxArray; SetVBAEnabled( pMod->IsVBACompat() ); -#if defined GCC +#if defined __GNUC__ SetParameters( pe ? pe->GetParameters() : (class SbxArray *)NULL ); #else SetParameters( pe ? pe->GetParameters() : NULL ); -- cgit