diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 11:58:41 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2007-11-02 11:58:41 +0000 |
commit | 0387fa0bd0dd945c5e23cc165b393becfcfe0c6b (patch) | |
tree | ddb9a5535ad76ef78ed2d6ba6b1891f2e346b0bc /tools/bootstrp | |
parent | 7ef457f4c83191d9b976f5696619f394033481ec (diff) |
INTEGRATION: CWS os2port02 (1.8.128); FILE MERGED
2007/09/30 12:08:49 ydario 1.8.128.1: Issue number: i82034
Submitted by: ydario
Reviewed by: ydario
Commit of changes for OS/2 CWS source code integration.
Diffstat (limited to 'tools/bootstrp')
-rw-r--r-- | tools/bootstrp/inimgr.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/bootstrp/inimgr.cxx b/tools/bootstrp/inimgr.cxx index 3d0732b421e6..77f82868477b 100644 --- a/tools/bootstrp/inimgr.cxx +++ b/tools/bootstrp/inimgr.cxx @@ -4,9 +4,9 @@ * * $RCSfile: inimgr.cxx,v $ * - * $Revision: 1.8 $ + * $Revision: 1.9 $ * - * last change: $Author: obo $ $Date: 2006-09-17 00:48:19 $ + * last change: $Author: hr $ $Date: 2007-11-02 12:58:41 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -57,7 +57,7 @@ IniManager::IniManager( ByteString &rDir, ByteString &rLocalDir ) sLocalPath = rLocalDir; sGlobalDir = rDir; -#if !defined( UNX ) +#if !defined( UNX ) && !defined( OS2 ) mkdir(( char * ) sLocalPath.GetBuffer()); #else mkdir( sLocalPath.GetBuffer() ,00777 ); @@ -71,7 +71,7 @@ IniManager::IniManager( ByteString &rDir ) { sLocalPath = GetLocalIni(); sGlobalDir = rDir; -#if !defined( UNX ) +#if !defined( UNX ) && !defined( OS2 ) mkdir(( char * ) sLocalPath.GetBuffer()); #else mkdir( sLocalPath.GetBuffer() ,00777 ); @@ -85,7 +85,7 @@ IniManager::IniManager() { sLocalPath = GetLocalIni(); -#if !defined( UNX ) +#if !defined( UNX ) && !defined( OS2 ) mkdir(( char * ) sLocalPath.GetBuffer()); #else mkdir( sLocalPath.GetBuffer(), 00777 ); |