diff options
Diffstat (limited to 'src/scripttools')
-rw-r--r-- | src/scripttools/debugging/qscriptdebuggerconsole.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/scripttools/debugging/qscriptdebuggerconsole.cpp b/src/scripttools/debugging/qscriptdebuggerconsole.cpp index 9968411..d5bdf75 100644 --- a/src/scripttools/debugging/qscriptdebuggerconsole.cpp +++ b/src/scripttools/debugging/qscriptdebuggerconsole.cpp @@ -404,7 +404,7 @@ QScriptDebuggerConsoleCommandJob *QScriptDebuggerConsolePrivate::createJob( if (!tmp.isEmpty()) args.append(tmp); } else { - args = tmp.split(QLatin1Char(' '), QString::SkipEmptyParts); + args = tmp.split(QLatin1Char(' '), Qt::SkipEmptyParts); } return cmd->createJob(args, q_func(), messageHandler, commandScheduler); } |