aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qmltooling/qmldbg_debugger/qv4datacollector.h
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2015-08-18 14:39:13 +0200
committerUlf Hermann <ulf.hermann@theqtcompany.com>2015-09-15 15:25:47 +0000
commit03fa8422294fee7a71f502f1cdf5e4300a2630fe (patch)
treeb26c08999681bb08467c7ff7da9e0e46924a15b9 /src/plugins/qmltooling/qmldbg_debugger/qv4datacollector.h
parente821115888f0e6b176d6c45eec507920eee514c8 (diff)
V4 Debugger: Eliminate sourcesCollected signals and slots
There is no real reason to handle the "scripts" command like this. Change-Id: I640d878ea9d8cd449e73bf4b90fcf2ef3d68a963 Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'src/plugins/qmltooling/qmldbg_debugger/qv4datacollector.h')
-rw-r--r--src/plugins/qmltooling/qmldbg_debugger/qv4datacollector.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/plugins/qmltooling/qmldbg_debugger/qv4datacollector.h b/src/plugins/qmltooling/qmldbg_debugger/qv4datacollector.h
index 7d26d71bdf..39aed5b868 100644
--- a/src/plugins/qmltooling/qmldbg_debugger/qv4datacollector.h
+++ b/src/plugins/qmltooling/qmldbg_debugger/qv4datacollector.h
@@ -116,11 +116,12 @@ public:
class GatherSourcesJob: public QV4::Debugging::Debugger::Job
{
QV4::ExecutionEngine *engine;
- const int seq;
+ QStringList sources;
public:
- GatherSourcesJob(QV4::ExecutionEngine *engine, int seq);
+ GatherSourcesJob(QV4::ExecutionEngine *engine);
void run();
+ const QStringList &result() const;
};
class ArgumentCollectJob: public QV4::Debugging::Debugger::Job