INTEGRATION: CWS tbe15 (1.6.12); FILE MERGED

2004/12/03 16:24:19 tbe 1.6.12.1: #i38139# Tools/Macro/Run Macro freezes office when Basic macro is already running
This commit is contained in:
Kurt Zenker
2005-01-13 16:43:24 +00:00
parent 565aefdc11
commit 583ab109bb

View File

@@ -2,9 +2,9 @@
*
* $RCSfile: basscript.cxx,v $
*
* $Revision: 1.6 $
* $Revision: 1.7 $
*
* last change: $Author: rt $ $Date: 2004-10-22 14:03:16 $
* last change: $Author: kz $ $Date: 2005-01-13 17:43:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -63,6 +63,12 @@
#include "basscript.hxx"
#endif
#ifndef _VOS_MUTEX_HXX_
#include <vos/mutex.hxx>
#endif
#ifndef _SV_SVAPP_HXX
#include <vcl/svapp.hxx>
#endif
#ifndef _SBXCLASS_HXX
#include <svtools/sbx.hxx>
#endif
@@ -123,7 +129,17 @@ namespace basprov
// TODO: throw CannotConvertException
// TODO: check length of aOutParamIndex, aOutParam
::osl::MutexGuard aGuard( StarBASIC::GetGlobalMutex() );
::vos::OGuard aGuard( Application::GetSolarMutex() );
if ( StarBASIC::IsRunning() )
{
throw provider::ScriptFrameworkErrorException(
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Basic is already running!" ) ),
Reference< XInterface >(),
m_funcName,
::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( "Basic" ) ),
provider::ScriptFrameworkErrorType::UNKNOWN );
}
Any aReturn;