diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-09-27 12:42:25 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-09-27 12:42:25 +0000 |
commit | 062bdd4d3027eb55f21d4535c60fd876c2624f0e (patch) | |
tree | 5e72ba8166e28041c3cc0af6494f512060a0902d | |
parent | 20e1cc4b604fe0826a23766e6a908be42ab5323b (diff) |
#65293#: exception specifications
6 files changed, 24 insertions, 24 deletions
diff --git a/UnoControls/source/controls/OConnectionPointContainerHelper.cxx b/UnoControls/source/controls/OConnectionPointContainerHelper.cxx index 8bfcd40e4..75ab6bfda 100644 --- a/UnoControls/source/controls/OConnectionPointContainerHelper.cxx +++ b/UnoControls/source/controls/OConnectionPointContainerHelper.cxx @@ -2,9 +2,9 @@ * * $RCSfile: OConnectionPointContainerHelper.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:11:17 $ + * last change: $Author: hr $ $Date: 2001-09-27 13:42:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -134,7 +134,7 @@ Any SAL_CALL OConnectionPointContainerHelper::queryInterface( const Type& aType // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL OConnectionPointContainerHelper::acquire() throw( RuntimeException ) +void SAL_CALL OConnectionPointContainerHelper::acquire() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. @@ -147,7 +147,7 @@ void SAL_CALL OConnectionPointContainerHelper::acquire() throw( RuntimeException // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL OConnectionPointContainerHelper::release() throw( RuntimeException ) +void SAL_CALL OConnectionPointContainerHelper::release() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. diff --git a/UnoControls/source/controls/OConnectionPointHelper.cxx b/UnoControls/source/controls/OConnectionPointHelper.cxx index f0c2e9c52..0ab4f3f20 100644 --- a/UnoControls/source/controls/OConnectionPointHelper.cxx +++ b/UnoControls/source/controls/OConnectionPointHelper.cxx @@ -2,9 +2,9 @@ * * $RCSfile: OConnectionPointHelper.cxx,v $ * - * $Revision: 1.1.1.1 $ + * $Revision: 1.2 $ * - * last change: $Author: hr $ $Date: 2000-09-18 16:11:17 $ + * last change: $Author: hr $ $Date: 2001-09-27 13:42:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -138,7 +138,7 @@ Any SAL_CALL OConnectionPointHelper::queryInterface( const Type& aType ) throw( // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL OConnectionPointHelper::acquire() throw( RuntimeException ) +void SAL_CALL OConnectionPointHelper::acquire() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. @@ -151,7 +151,7 @@ void SAL_CALL OConnectionPointHelper::acquire() throw( RuntimeException ) // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL OConnectionPointHelper::release() throw( RuntimeException ) +void SAL_CALL OConnectionPointHelper::release() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. diff --git a/UnoControls/source/controls/framecontrol.cxx b/UnoControls/source/controls/framecontrol.cxx index 926cee37c..57acc10df 100644 --- a/UnoControls/source/controls/framecontrol.cxx +++ b/UnoControls/source/controls/framecontrol.cxx @@ -2,9 +2,9 @@ * * $RCSfile: framecontrol.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: hjs $ $Date: 2001-09-11 16:41:51 $ + * last change: $Author: hr $ $Date: 2001-09-27 13:42:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -170,7 +170,7 @@ Any SAL_CALL FrameControl::queryInterface( const Type& rType ) throw( RuntimeExc // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL FrameControl::acquire() throw( RuntimeException ) +void SAL_CALL FrameControl::acquire() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. @@ -183,7 +183,7 @@ void SAL_CALL FrameControl::acquire() throw( RuntimeException ) // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL FrameControl::release() throw( RuntimeException ) +void SAL_CALL FrameControl::release() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. diff --git a/UnoControls/source/controls/progressbar.cxx b/UnoControls/source/controls/progressbar.cxx index 5d2135ac5..bd3ce2d88 100644 --- a/UnoControls/source/controls/progressbar.cxx +++ b/UnoControls/source/controls/progressbar.cxx @@ -2,9 +2,9 @@ * * $RCSfile: progressbar.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: tl $ $Date: 2001-08-23 13:55:37 $ + * last change: $Author: hr $ $Date: 2001-09-27 13:42:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -164,7 +164,7 @@ Any SAL_CALL ProgressBar::queryInterface( const Type& rType ) throw( RuntimeExce // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL ProgressBar::acquire() throw( RuntimeException ) +void SAL_CALL ProgressBar::acquire() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. @@ -177,7 +177,7 @@ void SAL_CALL ProgressBar::acquire() throw( RuntimeException ) // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL ProgressBar::release() throw( RuntimeException ) +void SAL_CALL ProgressBar::release() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. diff --git a/UnoControls/source/controls/progressmonitor.cxx b/UnoControls/source/controls/progressmonitor.cxx index f93f67174..8eb89ff95 100644 --- a/UnoControls/source/controls/progressmonitor.cxx +++ b/UnoControls/source/controls/progressmonitor.cxx @@ -2,9 +2,9 @@ * * $RCSfile: progressmonitor.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: kz $ $Date: 2001-05-15 12:07:05 $ + * last change: $Author: hr $ $Date: 2001-09-27 13:42:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -221,7 +221,7 @@ Any SAL_CALL ProgressMonitor::queryInterface( const Type& rType ) throw( Runtime // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL ProgressMonitor::acquire() throw( RuntimeException ) +void SAL_CALL ProgressMonitor::acquire() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. @@ -234,7 +234,7 @@ void SAL_CALL ProgressMonitor::acquire() throw( RuntimeException ) // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL ProgressMonitor::release() throw( RuntimeException ) +void SAL_CALL ProgressMonitor::release() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. diff --git a/UnoControls/source/controls/statusindicator.cxx b/UnoControls/source/controls/statusindicator.cxx index d59ee77e8..ee774fe78 100644 --- a/UnoControls/source/controls/statusindicator.cxx +++ b/UnoControls/source/controls/statusindicator.cxx @@ -2,9 +2,9 @@ * * $RCSfile: statusindicator.cxx,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: as $ $Date: 2001-08-10 12:04:17 $ + * last change: $Author: hr $ $Date: 2001-09-27 13:42:25 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -178,7 +178,7 @@ Any SAL_CALL StatusIndicator::queryInterface( const Type& rType ) throw( Runtime // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL StatusIndicator::acquire() throw( RuntimeException ) +void SAL_CALL StatusIndicator::acquire() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. @@ -191,7 +191,7 @@ void SAL_CALL StatusIndicator::acquire() throw( RuntimeException ) // XInterface //____________________________________________________________________________________________________________ -void SAL_CALL StatusIndicator::release() throw( RuntimeException ) +void SAL_CALL StatusIndicator::release() throw() { // Attention: // Don't use mutex or guard in this method!!! Is a method of XInterface. |