diff options
Diffstat (limited to 'sd/source/ui/unoidl/SdUnoDrawView.cxx')
-rw-r--r-- | sd/source/ui/unoidl/SdUnoDrawView.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sd/source/ui/unoidl/SdUnoDrawView.cxx b/sd/source/ui/unoidl/SdUnoDrawView.cxx index 8d5fad88f62e..4fc83e1d00a5 100644 --- a/sd/source/ui/unoidl/SdUnoDrawView.cxx +++ b/sd/source/ui/unoidl/SdUnoDrawView.cxx @@ -370,7 +370,7 @@ void SdUnoDrawView::setFastPropertyValue ( } break; default: - throw beans::UnknownPropertyException(); + throw beans::UnknownPropertyException( OUString::number(nHandle), static_cast<cppu::OWeakObject*>(this)); } } @@ -414,7 +414,7 @@ Any SAL_CALL SdUnoDrawView::getFastPropertyValue ( break; default: - throw beans::UnknownPropertyException(); + throw beans::UnknownPropertyException( OUString::number(nHandle), static_cast<cppu::OWeakObject*>(this)); } return aValue; |