summaryrefslogtreecommitdiffstats
path: root/src/corelib/io
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/io')
-rw-r--r--src/corelib/io/qdir.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/io/qdir.cpp b/src/corelib/io/qdir.cpp
index ed3c4d6993..148ae5b202 100644
--- a/src/corelib/io/qdir.cpp
+++ b/src/corelib/io/qdir.cpp
@@ -1384,7 +1384,7 @@ bool QDir::mkdir(const QString &dirName) const
const QDirPrivate* d = d_ptr.constData();
if (dirName.isEmpty()) {
- qWarning("QDir::mkdir: Empty or null file name(s)");
+ qWarning("QDir::mkdir: Empty or null file name");
return false;
}
@@ -1408,7 +1408,7 @@ bool QDir::rmdir(const QString &dirName) const
const QDirPrivate* d = d_ptr.constData();
if (dirName.isEmpty()) {
- qWarning("QDir::rmdir: Empty or null file name(s)");
+ qWarning("QDir::rmdir: Empty or null file name");
return false;
}
@@ -1436,7 +1436,7 @@ bool QDir::mkpath(const QString &dirPath) const
const QDirPrivate* d = d_ptr.constData();
if (dirPath.isEmpty()) {
- qWarning("QDir::mkpath: Empty or null file name(s)");
+ qWarning("QDir::mkpath: Empty or null file name");
return false;
}
@@ -1462,7 +1462,7 @@ bool QDir::rmpath(const QString &dirPath) const
const QDirPrivate* d = d_ptr.constData();
if (dirPath.isEmpty()) {
- qWarning("QDir::rmpath: Empty or null file name(s)");
+ qWarning("QDir::rmpath: Empty or null file name");
return false;
}