summaryrefslogtreecommitdiff
path: root/filter/source/graphic/GraphicExportDialog.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'filter/source/graphic/GraphicExportDialog.cxx')
-rw-r--r--filter/source/graphic/GraphicExportDialog.cxx10
1 files changed, 3 insertions, 7 deletions
diff --git a/filter/source/graphic/GraphicExportDialog.cxx b/filter/source/graphic/GraphicExportDialog.cxx
index a6f74f735688..1c86d6bc2588 100644
--- a/filter/source/graphic/GraphicExportDialog.cxx
+++ b/filter/source/graphic/GraphicExportDialog.cxx
@@ -47,11 +47,11 @@ GraphicExportDialog::~GraphicExportDialog()
}
// XInitialization
-void SAL_CALL GraphicExportDialog::initialize( const Sequence<Any>& ) throw ( Exception, RuntimeException, std::exception )
+void SAL_CALL GraphicExportDialog::initialize( const Sequence<Any>& )
{}
// XPropertyAccess
-Sequence<PropertyValue> GraphicExportDialog::getPropertyValues() throw ( RuntimeException, std::exception )
+Sequence<PropertyValue> GraphicExportDialog::getPropertyValues()
{
sal_Int32 i;
sal_Int32 nCount = maMediaDescriptor.getLength();
@@ -76,8 +76,6 @@ Sequence<PropertyValue> GraphicExportDialog::getPropertyValues() throw ( Runtime
}
void GraphicExportDialog::setPropertyValues( const Sequence<PropertyValue>& aProps )
- throw ( UnknownPropertyException, PropertyVetoException, IllegalArgumentException,
- WrappedTargetException, RuntimeException, std::exception )
{
maMediaDescriptor = aProps;
@@ -97,12 +95,11 @@ void GraphicExportDialog::setPropertyValues( const Sequence<PropertyValue>& aPro
// XExecutableDialog
void GraphicExportDialog::setTitle( const OUString& aTitle )
- throw ( uno::RuntimeException, std::exception )
{
maDialogTitle = aTitle;
}
-sal_Int16 GraphicExportDialog::execute() throw ( RuntimeException, std::exception )
+sal_Int16 GraphicExportDialog::execute()
{
sal_Int16 nReturn = ui::dialogs::ExecutableDialogResults::CANCEL;
ScopedVclPtrInstance< GraphicExportOptionsDialog > graphicExportOptionsDialog( Application::GetDefDialogParent(), mxSourceDocument );
@@ -116,7 +113,6 @@ sal_Int16 GraphicExportDialog::execute() throw ( RuntimeException, std::exceptio
// XEmporter
void GraphicExportDialog::setSourceDocument( const Reference<XComponent>& xDocument )
- throw ( IllegalArgumentException, RuntimeException, std::exception )
{
mxSourceDocument = xDocument;