diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-06-13 00:26:44 (GMT) |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2009-06-13 00:26:44 (GMT) |
commit | 796a5a2c7d8c91a46ac761dde18b7da2ec6c177b (patch) | |
tree | ade5156dcf10ecac4334fbd5f29d88af102f60eb /src | |
parent | 50aa24deadf43bdbfca5b3dd472a99aff8e3f09b (diff) | |
download | Qt-796a5a2c7d8c91a46ac761dde18b7da2ec6c177b.zip Qt-796a5a2c7d8c91a46ac761dde18b7da2ec6c177b.tar.gz Qt-796a5a2c7d8c91a46ac761dde18b7da2ec6c177b.tar.bz2 |
Fixed compile of scripttools with MSVC 2003.
Fixes compile error:
debugging\qscriptdebuggercommand.cpp(567) : error C2664: 'QScriptDebuggerCommand::setAttribute' : cannot convert parameter 2 from 'const QStringList' to 'const QVariant &'
Reason: cannot convert from 'const QStringList' to 'const QVariant'
Source or target has incomplete type
Diffstat (limited to 'src')
-rw-r--r-- | src/scripttools/debugging/qscriptdebuggercommand.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/scripttools/debugging/qscriptdebuggercommand.cpp b/src/scripttools/debugging/qscriptdebuggercommand.cpp index fc9b96a..763c126 100644 --- a/src/scripttools/debugging/qscriptdebuggercommand.cpp +++ b/src/scripttools/debugging/qscriptdebuggercommand.cpp @@ -45,6 +45,7 @@ #include <QtCore/qhash.h> #include <QtCore/qdatastream.h> +#include <QtCore/qstringlist.h> Q_DECLARE_METATYPE(QScriptBreakpointData) Q_DECLARE_METATYPE(QScriptDebuggerValue) |