From 43c6faad9a5bc0602147a4a8f28f28d2a9867002 Mon Sep 17 00:00:00 2001 From: Jens-Heiner Rechtien Date: Thu, 27 Sep 2001 12:42:25 +0000 Subject: #65293#: exception specifications --- UnoControls/source/controls/OConnectionPointContainerHelper.cxx | 8 ++++---- UnoControls/source/controls/OConnectionPointHelper.cxx | 8 ++++---- UnoControls/source/controls/framecontrol.cxx | 8 ++++---- UnoControls/source/controls/progressbar.cxx | 8 ++++---- UnoControls/source/controls/progressmonitor.cxx | 8 ++++---- UnoControls/source/controls/statusindicator.cxx | 8 ++++---- 6 files changed, 24 insertions(+), 24 deletions(-) (limited to 'UnoControls') diff --git a/UnoControls/source/controls/OConnectionPointContainerHelper.cxx b/UnoControls/source/controls/OConnectionPointContainerHelper.cxx index 224345df668f..b29339a7675c 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 2e76697c5d1c..d0e41faebbff 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 93a877eaa6db..b7e1c7168245 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 432400ba6635..31324559a445 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 d3d70cd45fa2..5cfa183af70c 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 6247ebaba481..65a580b2cf37 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. -- cgit n value='feature/allo_contract34185'>feature/allo_contract34185 LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/external
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2017-09-13 13:42:29 +0200
committerEike Rathke <erack@redhat.com>2017-09-13 13:43:12 +0200
commit9e399bc613bb4ea1470bd52c64af920d4e9bc39b (patch)
tree0190adc4700c0c0460b4a8c9355648a455491eaa /external
parent3f0fba004badec01e536ca0fe2889e7e0bb93d7a (diff)
icu: do not include non-standardized xlocale.h if U_PLATFORM_IS_LINUX_BASED