diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-01-03 13:21:00 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2001-01-03 13:21:00 +0000 |
commit | c2477bb5e4a6b09cf383136413a87c9579dea579 (patch) | |
tree | c4300fad20216c51b99024d0c6ef12dd36a2c32a /vos | |
parent | 75c6fc5627e042ca5a3f45538367c7fdfdc0cf25 (diff) |
#65293#: use std::va_list
Diffstat (limited to 'vos')
-rw-r--r-- | vos/source/process.cxx | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/vos/source/process.cxx b/vos/source/process.cxx index 645ddda977b1..add72c614a55 100644 --- a/vos/source/process.cxx +++ b/vos/source/process.cxx @@ -2,9 +2,9 @@ * * $RCSfile: process.cxx,v $ * - * $Revision: 1.3 $ + * $Revision: 1.4 $ * - * last change: $Author: hr $ $Date: 2001-01-03 14:19:15 $ + * last change: $Author: hr $ $Date: 2001-01-03 14:21:00 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -91,9 +91,8 @@ 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; + std::va_list pArgs; sal_uInt32 i = 0; const rtl::OUString* aArgument; @@ -178,9 +177,8 @@ 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; + std::va_list pArgs; sal_uInt32 i = 0; const rtl::OUString* aArgument; |