summaryrefslogtreecommitdiff
path: root/extensions/source/update/ui/updatecheckui.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/source/update/ui/updatecheckui.cxx')
-rw-r--r--extensions/source/update/ui/updatecheckui.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/update/ui/updatecheckui.cxx b/extensions/source/update/ui/updatecheckui.cxx
index 18fe9599f316..6f510dba8a1a 100644
--- a/extensions/source/update/ui/updatecheckui.cxx
+++ b/extensions/source/update/ui/updatecheckui.cxx
@@ -406,7 +406,7 @@ void UpdateCheckUI::setPropertyValue(const OUString& rPropertyName,
}
}
else
- throw beans::UnknownPropertyException();
+ throw beans::UnknownPropertyException(rPropertyName);
if ( mbBubbleChanged && mpBubbleWin )
mpBubbleWin->Show( false );
@@ -432,7 +432,7 @@ uno::Any UpdateCheckUI::getPropertyValue(const OUString& rPropertyName)
else if( rPropertyName == PROPERTY_SHOW_MENUICON )
aRet <<= mbShowMenuIcon;
else
- throw beans::UnknownPropertyException();
+ throw beans::UnknownPropertyException(rPropertyName);
return aRet;
}