summaryrefslogtreecommitdiff
path: root/vbahelper/source/vbahelper/vbaapplicationbase.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vbahelper/source/vbahelper/vbaapplicationbase.cxx')
-rw-r--r--vbahelper/source/vbahelper/vbaapplicationbase.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vbahelper/source/vbahelper/vbaapplicationbase.cxx b/vbahelper/source/vbahelper/vbaapplicationbase.cxx
index 0c8e90a47db3..7110e7cf89cc 100644
--- a/vbahelper/source/vbahelper/vbaapplicationbase.cxx
+++ b/vbahelper/source/vbahelper/vbaapplicationbase.cxx
@@ -97,7 +97,7 @@ public:
void Start( const ::rtl::Reference< VbaApplicationBase > xBase, const OUString& aFunction, double nFrom, double nTo )
{
if ( !xBase.is() || aFunction.isEmpty() )
- throw uno::RuntimeException( "Unexpected arguments!" , uno::Reference< uno::XInterface >() );
+ throw uno::RuntimeException( "Unexpected arguments!" );
m_xBase = xBase;
m_aTimerInfo = VbaTimerInfo( aFunction, ::std::pair< double, double >( nFrom, nTo ) );
@@ -348,7 +348,7 @@ uno::Any SAL_CALL VbaApplicationBase::Run( const OUString& MacroName, const uno:
}
else
{
- throw uno::RuntimeException( "The macro doesn't exist" , uno::Reference< uno::XInterface >() );
+ throw uno::RuntimeException( "The macro doesn't exist" );
}
}
@@ -356,13 +356,13 @@ void SAL_CALL VbaApplicationBase::OnTime( const uno::Any& aEarliestTime, const O
throw ( uno::RuntimeException, std::exception )
{
if ( aFunction.isEmpty() )
- throw uno::RuntimeException( "Unexpected function name!" , uno::Reference< uno::XInterface >() );
+ throw uno::RuntimeException( "Unexpected function name!" );
double nEarliestTime = 0;
double nLatestTime = 0;
if ( !( aEarliestTime >>= nEarliestTime )
|| ( aLatestTime.hasValue() && !( aLatestTime >>= nLatestTime ) ) )
- throw uno::RuntimeException( "Only double is supported as time for now!" , uno::Reference< uno::XInterface >() );
+ throw uno::RuntimeException( "Only double is supported as time for now!" );
bool bSetTimer = true;
aSchedule >>= bSetTimer;