summaryrefslogtreecommitdiff
path: root/extensions/source/propctrlr/pushbuttonnavigation.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-06-05 08:15:03 +0200
committerNoel Grandin <noel@peralex.com>2014-06-05 08:17:50 +0200
commit62258d9c8f6b6f8d89ade68af97ccdac63dce2b7 (patch)
treed2623f52ae981e54ab67e3c33351ad150a61a6b3 /extensions/source/propctrlr/pushbuttonnavigation.hxx
parent0a997700372c87cbcbee16ad9693f6def7921272 (diff)
extensions: remove SAL_THROW macro
Change-Id: I12b5b46d31d5189adb21804a818ce591f2c19cbf
Diffstat (limited to 'extensions/source/propctrlr/pushbuttonnavigation.hxx')
-rw-r--r--extensions/source/propctrlr/pushbuttonnavigation.hxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/extensions/source/propctrlr/pushbuttonnavigation.hxx b/extensions/source/propctrlr/pushbuttonnavigation.hxx
index c6c206a4ec03..489d970837a3 100644
--- a/extensions/source/propctrlr/pushbuttonnavigation.hxx
+++ b/extensions/source/propctrlr/pushbuttonnavigation.hxx
@@ -51,35 +51,35 @@ namespace pcr
the "virtual" button types such as "move-to-next-record button".
*/
::com::sun::star::uno::Any
- getCurrentButtonType() const SAL_THROW(());
+ getCurrentButtonType() const;
/** sets the current value of the "ButtonType" property, taking into account
the "virtual" button types such as "move-to-next-record button".
*/
- void setCurrentButtonType( const ::com::sun::star::uno::Any& _rValue ) const SAL_THROW(());
+ void setCurrentButtonType( const ::com::sun::star::uno::Any& _rValue ) const;
/** retrieves the current state of the "ButtonType" property, taking into account
the "virtual" button types such as "move-to-next-record button".
*/
::com::sun::star::beans::PropertyState
- getCurrentButtonTypeState( ) const SAL_THROW(());
+ getCurrentButtonTypeState( ) const;
/** returns the current value of the "TargetURL" property, taking into account
that some URLs are special values caused by "virtual" ButtonTypes
*/
::com::sun::star::uno::Any
- getCurrentTargetURL() const SAL_THROW(());
+ getCurrentTargetURL() const;
/** sets the current value of the "TargetURL" property, taking into account
that some URLs are special values caused by "virtual" ButtonTypes
*/
- void setCurrentTargetURL( const ::com::sun::star::uno::Any& _rValue ) const SAL_THROW(());
+ void setCurrentTargetURL( const ::com::sun::star::uno::Any& _rValue ) const;
/** retrieves the current state of the "TargetURL" property, taking into account
that some URLs are special values caused by "virtual" ButtonTypes
*/
::com::sun::star::beans::PropertyState
- getCurrentTargetURLState( ) const SAL_THROW(());
+ getCurrentTargetURLState( ) const;
/** determines whether the current button tpye is FormButtonType_URL
*/
@@ -90,7 +90,7 @@ namespace pcr
bool hasNonEmptyCurrentTargetURL() const;
private:
- sal_Int32 implGetCurrentButtonType() const SAL_THROW(( ::com::sun::star::uno::Exception ));
+ sal_Int32 implGetCurrentButtonType() const;
};