summaryrefslogtreecommitdiff
path: root/vos
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2001-01-03 13:19:15 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2001-01-03 13:19:15 +0000
commit75c6fc5627e042ca5a3f45538367c7fdfdc0cf25 (patch)
treed11b9e269b37917a681df49756b579f04e2fbb59 /vos
parent1bcdb60574574a8c36719bb46c744c5ca238b165 (diff)
#65293#: using namespace std for functions with var. argument list
Diffstat (limited to 'vos')
-rw-r--r--vos/source/process.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/vos/source/process.cxx b/vos/source/process.cxx
index 98ee78d9b06a..645ddda977b1 100644
--- a/vos/source/process.cxx
+++ b/vos/source/process.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: process.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: hr $ $Date: 2000-10-26 11:06:29 $
+ * last change: $Author: hr $ $Date: 2001-01-03 14:19:15 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -91,6 +91,7 @@ OArgumentList::OArgumentList() :
OArgumentList::OArgumentList( sal_uInt32 nArgs, const NAMESPACE_RTL(OUString)* aArgument1, ... ) :
n_Args( nArgs )
{
+ using namespace std;
m_aVec = new rtl_uString* [nArgs];
va_list pArgs;
sal_uInt32 i = 0;
@@ -177,6 +178,7 @@ OEnvironment::OEnvironment() :
OEnvironment::OEnvironment( sal_uInt32 nVars, const NAMESPACE_RTL(OUString)* aArgument1, ... ) :
n_Vars( nVars )
{
+ using namespace std;
m_aVec = new rtl_uString* [nVars];
va_list pArgs;
sal_uInt32 i = 0;