summaryrefslogtreecommitdiff
path: root/x11/qt3-libs/patches/patch-ac
blob: 8e9cd05fdfc6a3250aacb3b26b0a0c67006b8b9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
$NetBSD: patch-ac,v 1.2 2002/10/28 08:46:44 skrll Exp $

--- src/tools/qdir_unix.cpp.orig	Thu Oct 17 15:08:58 2002
+++ src/tools/qdir_unix.cpp
@@ -82,10 +82,19 @@ QString QDir::canonicalPath() const
 
 bool QDir::mkdir( const QString &dirName, bool acceptAbsPath ) const
 {
-#if defined(Q_OS_MACX)  // Mac X doesn't support trailing /'s
+#ifdef Q_TRAILING_DIR_SEP  // Some OSes doesn't support trailing /'s
     QString name = dirName;
-    if (dirName[dirName.length() - 1] == "/")
-	name = dirName.left( dirName.length() - 1 );
+    int pos = name.length();
+    if (pos > 0) {
+	while ( (pos - 1) >= 0 && name[pos - 1] == '/' ) {
+	    --pos;
+	};
+	if ( pos == 0 ) {
+	    name = QDir::rootDirPath();
+	} else {
+	    name.truncate( pos );
+	}
+    }
     return QT_MKDIR( QFile::encodeName(filePath(name,acceptAbsPath)), 0777 )
 	== 0;
 #else
@@ -96,7 +105,24 @@ bool QDir::mkdir( const QString &dirName
 
 bool QDir::rmdir( const QString &dirName, bool acceptAbsPath ) const
 {
+#ifdef Q_TRAILING_DIR_SEP  // Some OSes doesn't support trailing /'s
+    QString name = dirName;
+    int pos = name.length();
+    if (pos > 0) {
+	while ( (pos - 1) >= 0 && name[pos - 1] == '/' ) {
+	    --pos;
+	};
+	if ( pos == 0 ) {
+	    name = QDir::rootDirPath();
+	} else {
+	    name.truncate( pos );
+	}
+    }
+    return QT_RMDIR( QFile::encodeName(filePath(name,acceptAbsPath)) )
+	== 0;
+#else
     return QT_RMDIR( QFile::encodeName(filePath(dirName,acceptAbsPath)) ) == 0;
+#endif
 }
 
 bool QDir::isReadable() const