summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2002-08-19 12:02:55 +0000
committerDaniel Boelzle <dbo@openoffice.org>2002-08-19 12:02:55 +0000
commitdee7c8d4f3b0f66675b169a4e20bfa332cb3d088 (patch)
treed3020b639f48d4822b01dc8a3dd2b5b57d7fd5a6 /cppu
parent5c4d0fe4fb2473c924adfa0199cc5ecb6daf39a6 (diff)
#102391# fixed exc decl; namespace
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/uno/lbenv.cxx8
-rw-r--r--cppu/source/uno/lbmap.cxx8
2 files changed, 9 insertions, 7 deletions
diff --git a/cppu/source/uno/lbenv.cxx b/cppu/source/uno/lbenv.cxx
index d2301143e820..e38b2b4414a5 100644
--- a/cppu/source/uno/lbenv.cxx
+++ b/cppu/source/uno/lbenv.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: lbenv.cxx,v $
*
- * $Revision: 1.23 $
+ * $Revision: 1.24 $
*
- * last change: $Author: mh $ $Date: 2002-08-13 15:07:09 $
+ * last change: $Author: dbo $ $Date: 2002-08-19 13:02:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -689,7 +689,7 @@ static void writeLine( void * stream, const OUString & rLine, const sal_Char * p
//##################################################################################################
extern "C" void SAL_CALL uno_dumpEnvironment(
void * stream, uno_Environment * pEnv, const sal_Char * pFilter )
- SAL_THROW( () )
+ SAL_THROW_EXTERN_C()
{
OSL_ENSURE( pEnv, "### null ptr!" );
OUStringBuffer buf;
@@ -751,7 +751,7 @@ extern "C" void SAL_CALL uno_dumpEnvironment(
//##################################################################################################
extern "C" void SAL_CALL uno_dumpEnvironmentByName(
void * stream, rtl_uString * pEnvTypeName, const sal_Char * pFilter )
- SAL_THROW( () )
+ SAL_THROW_EXTERN_C()
{
uno_Environment * pEnv = 0;
uno_getEnvironment( &pEnv, pEnvTypeName, 0 );
diff --git a/cppu/source/uno/lbmap.cxx b/cppu/source/uno/lbmap.cxx
index ee1818a0da31..e08598e704b3 100644
--- a/cppu/source/uno/lbmap.cxx
+++ b/cppu/source/uno/lbmap.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: lbmap.cxx,v $
*
- * $Revision: 1.18 $
+ * $Revision: 1.19 $
*
- * last change: $Author: mh $ $Date: 2002-08-13 15:09:09 $
+ * last change: $Author: dbo $ $Date: 2002-08-19 13:02:55 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -532,6 +532,9 @@ static Mapping getMediateMapping(
return Mapping();
}
+}
+
+using namespace ::cppu;
extern "C"
{
@@ -706,4 +709,3 @@ void SAL_CALL uno_revokeMappingCallback(
}
} // extern "C"
-}