summaryrefslogtreecommitdiff
path: root/vbahelper/source/vbahelper/vbapictureformat.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'vbahelper/source/vbahelper/vbapictureformat.cxx')
-rw-r--r--vbahelper/source/vbahelper/vbapictureformat.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vbahelper/source/vbahelper/vbapictureformat.cxx b/vbahelper/source/vbahelper/vbapictureformat.cxx
index 9ec4ba1dddfd..d3834caf0219 100644
--- a/vbahelper/source/vbahelper/vbapictureformat.cxx
+++ b/vbahelper/source/vbahelper/vbapictureformat.cxx
@@ -35,11 +35,11 @@ ScVbaPictureFormat::checkParameterRangeInDouble( double nRange, double nMin, dou
{
if( nRange < nMin )
{
- throw uno::RuntimeException( "Parameter out of range, value is too small." , uno::Reference< uno::XInterface >() );
+ throw uno::RuntimeException( "Parameter out of range, value is too small." );
}
if( nRange > nMax )
{
- throw uno::RuntimeException( "Parameter out of range, value is too high." , uno::Reference< uno::XInterface >() );
+ throw uno::RuntimeException( "Parameter out of range, value is too high." );
}
}