From b71ef45a3e9bf1abf9bd03182f75bd4d3ee53b03 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 2 Jun 2014 15:23:44 +1000 Subject: [PATCH] VisualC++ compiler build fix --- sleepyhead/Graphs/gsessiontimeschart.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sleepyhead/Graphs/gsessiontimeschart.cpp b/sleepyhead/Graphs/gsessiontimeschart.cpp index a142f1d7..0ac1c1c2 100644 --- a/sleepyhead/Graphs/gsessiontimeschart.cpp +++ b/sleepyhead/Graphs/gsessiontimeschart.cpp @@ -110,17 +110,21 @@ void gSessionTimesChart::paint(QPainter &painter, gGraph &w, const QRegion ®i bool gSessionTimesChart::keyPressEvent(QKeyEvent *event, gGraph *graph) { + return true; } bool gSessionTimesChart::mouseMoveEvent(QMouseEvent *event, gGraph *graph) { + return true; } bool gSessionTimesChart::mousePressEvent(QMouseEvent *event, gGraph *graph) { + return true; } bool gSessionTimesChart::mouseReleaseEvent(QMouseEvent *event, gGraph *graph) { + return true; }