summaryrefslogtreecommitdiffstats
path: root/src/corelib/io
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/io')
-rw-r--r--src/corelib/io/qprocess.cpp2
-rw-r--r--src/corelib/io/qprocess.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/io/qprocess.cpp b/src/corelib/io/qprocess.cpp
index 0fea26b47f..b56ead8584 100644
--- a/src/corelib/io/qprocess.cpp
+++ b/src/corelib/io/qprocess.cpp
@@ -673,7 +673,7 @@ void QProcessPrivate::Channel::clear()
\value FailedToStart The process failed to start. Either the
invoked program is missing, or you may have insufficient
- permissions to invoke the program.
+ permissions or resources to invoke the program.
\value Crashed The process crashed some time after starting
successfully.
diff --git a/src/corelib/io/qprocess.h b/src/corelib/io/qprocess.h
index f43dfad840..9e497c3871 100644
--- a/src/corelib/io/qprocess.h
+++ b/src/corelib/io/qprocess.h
@@ -112,7 +112,7 @@ class Q_CORE_EXPORT QProcess : public QIODevice
Q_OBJECT
public:
enum ProcessError {
- FailedToStart, //### file not found, resource error
+ FailedToStart,
Crashed,
Timedout,
ReadError,