diff options
author | Eike Rathke <erack@redhat.com> | 2016-11-25 19:29:37 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2016-11-25 20:04:40 +0100 |
commit | 6fee9755f6ec6f61c024af193adfc09eac6fd03e (patch) | |
tree | cf51399e8d4f3ee4f043dc93576d927d60f84caa /svx/source/table/cell.cxx | |
parent | 86bf3f8b69692a82fdf0d9d408f0690028e6e3e0 (diff) |
give us a chance to see *which* property failed
Change-Id: If0c89760230eebc873bbc57511e44d7706af1c1e
Diffstat (limited to 'svx/source/table/cell.cxx')
-rw-r--r-- | svx/source/table/cell.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svx/source/table/cell.cxx b/svx/source/table/cell.cxx index 5eaa3f99b5b9..9a96ec963083 100644 --- a/svx/source/table/cell.cxx +++ b/svx/source/table/cell.cxx @@ -1123,7 +1123,7 @@ void SAL_CALL Cell::setPropertyValue( const OUString& rPropertyName, const Any& } } } - throw UnknownPropertyException(); + throw UnknownPropertyException( rPropertyName, static_cast<cppu::OWeakObject*>(this)); } @@ -1206,7 +1206,7 @@ Any SAL_CALL Cell::getPropertyValue( const OUString& PropertyName ) throw(Unknow } } } - throw UnknownPropertyException(); + throw UnknownPropertyException( PropertyName, static_cast<cppu::OWeakObject*>(this)); } @@ -1484,7 +1484,7 @@ void SAL_CALL Cell::setPropertyToDefault( const OUString& PropertyName ) throw(U GetModel()->SetChanged(); return; } - throw UnknownPropertyException(); + throw UnknownPropertyException( PropertyName, static_cast<cppu::OWeakObject*>(this)); } @@ -1526,7 +1526,7 @@ Any SAL_CALL Cell::getPropertyDefault( const OUString& aPropertyName ) throw(Unk } } } - throw UnknownPropertyException(); + throw UnknownPropertyException( aPropertyName, static_cast<cppu::OWeakObject*>(this)); } |