Windows build fix

This commit is contained in:
Mark Watkins 2013-10-26 01:44:14 +10:00
parent b3538bfaa2
commit 193dead833
4 changed files with 10 additions and 6 deletions

View File

@ -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;

View File

@ -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;
}

View File

@ -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;

View File

@ -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
}