diff options
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/aqua/FilterHelper.hxx | 7 | ||||
-rw-r--r-- | fpicker/source/aqua/SalAquaFilePicker.hxx | 1 | ||||
-rw-r--r-- | fpicker/source/aqua/SalAquaPicker.hxx | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/fpicker/source/aqua/FilterHelper.hxx b/fpicker/source/aqua/FilterHelper.hxx index 67c5d5df9023..dc49f3534a9a 100644 --- a/fpicker/source/aqua/FilterHelper.hxx +++ b/fpicker/source/aqua/FilterHelper.hxx @@ -81,16 +81,23 @@ public: virtual ~FilterHelper(); //XFilterManager delegates + /// @throws css::lang::IllegalArgumentException + /// @throws css::uno::RuntimeException void SAL_CALL appendFilter( const OUString& aTitle, const OUString& aFilter ) throw( css::lang::IllegalArgumentException, css::uno::RuntimeException ); + /// @throws css::lang::IllegalArgumentException + /// @throws css::uno::RuntimeException void SAL_CALL setCurrentFilter( const OUString& aTitle ) throw( css::lang::IllegalArgumentException, css::uno::RuntimeException ); + /// @throws css::uno::RuntimeException OUString SAL_CALL getCurrentFilter( ) throw( css::uno::RuntimeException ); //XFilterGroupManager delegates + /// @throws css::lang::IllegalArgumentException + /// @throws css::uno::RuntimeException void SAL_CALL appendFilterGroup( const OUString& sGroupTitle, const css::uno::Sequence< css::beans::StringPair >& aFilters ) throw (css::lang::IllegalArgumentException, css::uno::RuntimeException); diff --git a/fpicker/source/aqua/SalAquaFilePicker.hxx b/fpicker/source/aqua/SalAquaFilePicker.hxx index a84e6b56e61b..658fa7df259e 100644 --- a/fpicker/source/aqua/SalAquaFilePicker.hxx +++ b/fpicker/source/aqua/SalAquaFilePicker.hxx @@ -132,6 +132,7 @@ public: // XEventListener using cppu::WeakComponentImplHelperBase::disposing; + /// @throws css::uno::RuntimeException virtual void SAL_CALL disposing( const css::lang::EventObject& aEvent ) throw(css::uno::RuntimeException); diff --git a/fpicker/source/aqua/SalAquaPicker.hxx b/fpicker/source/aqua/SalAquaPicker.hxx index 34590550f51a..c91cb32b70c4 100644 --- a/fpicker/source/aqua/SalAquaPicker.hxx +++ b/fpicker/source/aqua/SalAquaPicker.hxx @@ -72,12 +72,16 @@ protected: NavigationServices_DialogType m_nDialogType; + /// @throws css::uno::RuntimeException void implsetTitle( const OUString& aTitle ) throw( css::uno::RuntimeException ); + /// @throws css::lang::IllegalArgumentException + /// @throws css::uno::RuntimeException void implsetDisplayDirectory( const OUString& rDirectory ) throw( css::lang::IllegalArgumentException, css::uno::RuntimeException ); + /// @throws css::uno::RuntimeException OUString const & implgetDisplayDirectory( ) throw( css::uno::RuntimeException ); |