diff --git a/sleepyhead/Graphs/gFlagsLine.cpp b/sleepyhead/Graphs/gFlagsLine.cpp index 2b4ab11a..ad25d48b 100644 --- a/sleepyhead/Graphs/gFlagsLine.cpp +++ b/sleepyhead/Graphs/gFlagsLine.cpp @@ -17,7 +17,9 @@ gFlagsLabelArea::gFlagsLabelArea(gFlagsGroup * group) } bool gFlagsLabelArea::mouseMoveEvent(QMouseEvent * event,gGraph * graph) { - if (m_group) m_group->mouseMoveEvent(event,graph); + if (m_group) + return m_group->mouseMoveEvent(event,graph); + return false; } @@ -282,6 +284,8 @@ void gFlagsLine::paint(gGraph & w,int left, int top, int width, int height) bool gFlagsLine::mouseMoveEvent(QMouseEvent * event,gGraph * graph) { + Q_UNUSED(event) + Q_UNUSED(graph) // qDebug() << code() << event->x() << event->y() << graph->rect(); return false; diff --git a/sleepyhead/Graphs/gSummaryChart.cpp b/sleepyhead/Graphs/gSummaryChart.cpp index eb18845d..c5e865db 100644 --- a/sleepyhead/Graphs/gSummaryChart.cpp +++ b/sleepyhead/Graphs/gSummaryChart.cpp @@ -869,13 +869,14 @@ bool SummaryChart::mousePressEvent(QMouseEvent * event,gGraph * graph) //qDebug() << "Jump to daily view?"; return true; } - Q_UNUSED(event) + Q_UNUSED(graph) return false; } bool SummaryChart::keyPressEvent(QKeyEvent * event,gGraph * graph) { Q_UNUSED(event) + Q_UNUSED(graph) //qDebug() << "Summarychart Keypress"; return false; } diff --git a/sleepyhead/Graphs/gYAxis.cpp b/sleepyhead/Graphs/gYAxis.cpp index dba09169..30be462d 100644 --- a/sleepyhead/Graphs/gYAxis.cpp +++ b/sleepyhead/Graphs/gYAxis.cpp @@ -384,9 +384,8 @@ bool gYAxis::mouseMoveEvent(QMouseEvent * event, gGraph * graph) bool gYAxis::mouseDoubleClickEvent(QMouseEvent * event, gGraph * graph) { if (graph) { - - int x=event->x(); - int y=event->y(); +// int x=event->x(); +// int y=event->y(); short z=(graph->zoomY()+1) % gGraph::maxZoomY; graph->setZoomY(z); qDebug() << "Mouse double clicked for" << graph->title() << z; diff --git a/sleepyhead/mainwindow.cpp b/sleepyhead/mainwindow.cpp index aa15b072..8ffbe021 100644 --- a/sleepyhead/mainwindow.cpp +++ b/sleepyhead/mainwindow.cpp @@ -1095,7 +1095,7 @@ void MainWindow::RestartApplication(bool force_login,bool change_datafolder) if (QProcess::startDetached(apppath,args)) { ::exit(0); //QApplication::instance()->exit(); - } else QMessageBox::warning(this,tr("Gah!"),tr("If you can read this, the restart command didn't work. Your going to have to do it yourself manually."),QMessageBox::Ok); + } else QMessageBox::warning(NULL,tr("Gah!"),tr("If you can read this, the restart command didn't work. Your going to have to do it yourself manually."),QMessageBox::Ok); #endif }