diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:05:29 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2006-06-20 03:05:29 +0000 |
commit | 77576d90257a866f4fb6c1f786b293d241e6a784 (patch) | |
tree | 5980c02d438e5ceb7c39df62ab0421d0fe57d505 /vos/inc | |
parent | b192e5c523a9ca9db89b5caeff6002c1ab2b193f (diff) |
INTEGRATION: CWS warnings01 (1.7.12); FILE MERGED
2005/10/27 09:57:31 sb 1.7.12.3: #i53898# Made code warning-free.
2005/09/23 00:13:46 sb 1.7.12.2: RESYNC: (1.7-1.8); FILE MERGED
2005/09/01 09:28:05 sb 1.7.12.1: #i53898# Made code warning-free: changed arg of vos::OEnvironment ctors from sal_uInt32 to sal_Int32.
Diffstat (limited to 'vos/inc')
-rw-r--r-- | vos/inc/vos/process.hxx | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/vos/inc/vos/process.hxx b/vos/inc/vos/process.hxx index 534aa0895191..27accf04cd22 100644 --- a/vos/inc/vos/process.hxx +++ b/vos/inc/vos/process.hxx @@ -4,9 +4,9 @@ * * $RCSfile: process.hxx,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: vg $ $Date: 2006-06-02 12:38:08 $ + * last change: $Author: hr $ $Date: 2006-06-20 04:05:29 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -93,9 +93,9 @@ class OEnvironment public: OEnvironment(); - OEnvironment( sal_uInt32 nVars, const ::rtl::OUString* aVariable1, ... ); + OEnvironment( sal_Int32 nVars, const ::rtl::OUString* aVariable1, ... ); // switched argument list to avoid ambiguity with previous constructor. - OEnvironment( const ::rtl::OUString aVariableList[], sal_uInt32 nVars ); + OEnvironment( const ::rtl::OUString aVariableList[], sal_Int32 nVars ); OEnvironment( const OEnvironment& rOther ); @@ -277,7 +277,8 @@ public: */ TStartupError SAL_CALL getCommandArg(sal_uInt32 nArg, ::rtl::OUString& strCommandArg); - TStartupError SAL_CALL getExecutableFile(::rtl::OUString& strImageName); + TStartupError SAL_CALL getExecutableFile(::rtl::OUString& strImageName) + const; /** Get the value of one enviroment variable. @param Name [in] denotes the name of the variable to get. |