From 8f5e61797d35ef376f9eb7af78731daec9a49091 Mon Sep 17 00:00:00 2001 From: Javier Date: Sun, 19 Sep 2021 22:58:10 +0200 Subject: minor cleanup --- stfexporter.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/stfexporter.cc b/stfexporter.cc index 84eaad7..fcd7194 100644 --- a/stfexporter.cc +++ b/stfexporter.cc @@ -75,6 +75,7 @@ public: } bool startStroke(const QPoint& p, int force, qint64 time) { + Q_UNUSED(force); if (_startTime == 0) { _startTime = time; } @@ -89,6 +90,8 @@ public: } bool strokePoint(const QPoint& p, int force, qint64 time) { + Q_UNUSED(force); + Q_UNUSED(time); QPoint delta = p - _lastP; _out->writeCharacters(QString(", %1 %2").arg(delta.x()).arg(delta.y())); @@ -98,6 +101,7 @@ public: } bool endStroke(qint64 time) { + Q_UNUSED(time); _out->writeEndElement(); return true; } -- cgit v1.2.3