aboutsummaryrefslogtreecommitdiff
path: root/stfexporter.cc
diff options
context:
space:
mode:
Diffstat (limited to 'stfexporter.cc')
-rw-r--r--stfexporter.cc4
1 files changed, 4 insertions, 0 deletions
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;
}