summaryrefslogtreecommitdiffstats
path: root/tests/qmlperf/datagenerator.h
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@theqtcompany.com>2015-06-17 14:01:44 +0300
committerMiikka Heikkinen <miikka.heikkinen@theqtcompany.com>2015-06-17 14:24:57 +0300
commita71eb045af5a00fe135201f8b3c5999eda26e0bd (patch)
treeb19c639be2034987e234e106104d89b5f6586608 /tests/qmlperf/datagenerator.h
parent916d67d2664b0262cd03b28ad0c694924dd09b13 (diff)
Fix building against 5.6
Apparently Qt modules are now required to use Q_SIGNALS and Q_SLOTS macros instead of 'signals' and 'slots' in headers. Change-Id: I4140b1fff4386d74bb371176919234366965e887 Reviewed-by: Mika Salmela <mika.salmela@theqtcompany.com>
Diffstat (limited to 'tests/qmlperf/datagenerator.h')
-rw-r--r--tests/qmlperf/datagenerator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qmlperf/datagenerator.h b/tests/qmlperf/datagenerator.h
index ce7d235e..32261df8 100644
--- a/tests/qmlperf/datagenerator.h
+++ b/tests/qmlperf/datagenerator.h
@@ -31,7 +31,7 @@ public:
DataGenerator(QObject *parent = 0);
virtual ~DataGenerator();
-public slots:
+public Q_SLOTS:
void generateData(QScatter3DSeries *series, uint count);
void add(QScatter3DSeries *series, uint count);
void writeLine(int itemCount, float fps);