summaryrefslogtreecommitdiff
path: root/xml2cmp
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2007-11-02 11:55:32 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2007-11-02 11:55:32 +0000
commit1d0f3800f8e0b5d51a08801a757295d9c707fe8e (patch)
tree557998bdae158d5f07948760ef51936880855dac /xml2cmp
parent97a042f038aedae294790440fe312a317cc3670d (diff)
INTEGRATION: CWS os2port02 (1.11.20); FILE MERGED
2007/10/04 19:45:25 ydario 1.11.20.1: Issue number: i82034 Submitted by: ydario Reviewed by: ydario Commit of changes for OS/2 CWS source code integration.
Diffstat (limited to 'xml2cmp')
-rw-r--r--xml2cmp/source/support/syshelp.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/xml2cmp/source/support/syshelp.cxx b/xml2cmp/source/support/syshelp.cxx
index 2caf1625244e..90b91545b57f 100644
--- a/xml2cmp/source/support/syshelp.cxx
+++ b/xml2cmp/source/support/syshelp.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: syshelp.cxx,v $
*
- * $Revision: 1.11 $
+ * $Revision: 1.12 $
*
- * last change: $Author: vg $ $Date: 2006-09-25 13:25:54 $
+ * last change: $Author: hr $ $Date: 2007-11-02 12:55:32 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -44,7 +44,7 @@
#ifdef WNT
#include <io.h>
-#elif defined(UNX)
+#elif defined(UNX) || defined(OS2)
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
@@ -212,7 +212,7 @@ GatherFileNames( List<Simstr> & o_sFiles,
_findclose(hFile);
delete [] sFilter;
-#elif defined(UNX)
+#elif defined(UNX) || defined(OS2)
DIR * pDir = opendir( i_sSrcDirectory );
dirent * pEntry = 0;
char * sEnding;
@@ -294,7 +294,7 @@ GatherSubDirectories( List<Simstr> & o_sSubDirectories,
_findclose(hFile);
delete [] sFilter;
-#elif defined(UNX)
+#elif defined(UNX) || defined(OS2)
DIR * pDir = opendir( i_sParentdDirectory );
dirent * pEntry = 0;
struct stat aEntryStatus;