mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Windows build fix
This commit is contained in:
parent
b3538bfaa2
commit
193dead833
@ -17,7 +17,9 @@ gFlagsLabelArea::gFlagsLabelArea(gFlagsGroup * group)
|
|||||||
}
|
}
|
||||||
bool gFlagsLabelArea::mouseMoveEvent(QMouseEvent * event,gGraph * graph)
|
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)
|
bool gFlagsLine::mouseMoveEvent(QMouseEvent * event,gGraph * graph)
|
||||||
{
|
{
|
||||||
|
Q_UNUSED(event)
|
||||||
|
Q_UNUSED(graph)
|
||||||
// qDebug() << code() << event->x() << event->y() << graph->rect();
|
// qDebug() << code() << event->x() << event->y() << graph->rect();
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
@ -869,13 +869,14 @@ bool SummaryChart::mousePressEvent(QMouseEvent * event,gGraph * graph)
|
|||||||
//qDebug() << "Jump to daily view?";
|
//qDebug() << "Jump to daily view?";
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
Q_UNUSED(event)
|
Q_UNUSED(graph)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool SummaryChart::keyPressEvent(QKeyEvent * event,gGraph * graph)
|
bool SummaryChart::keyPressEvent(QKeyEvent * event,gGraph * graph)
|
||||||
{
|
{
|
||||||
Q_UNUSED(event)
|
Q_UNUSED(event)
|
||||||
|
Q_UNUSED(graph)
|
||||||
//qDebug() << "Summarychart Keypress";
|
//qDebug() << "Summarychart Keypress";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -384,9 +384,8 @@ bool gYAxis::mouseMoveEvent(QMouseEvent * event, gGraph * graph)
|
|||||||
bool gYAxis::mouseDoubleClickEvent(QMouseEvent * event, gGraph * graph)
|
bool gYAxis::mouseDoubleClickEvent(QMouseEvent * event, gGraph * graph)
|
||||||
{
|
{
|
||||||
if (graph) {
|
if (graph) {
|
||||||
|
// int x=event->x();
|
||||||
int x=event->x();
|
// int y=event->y();
|
||||||
int y=event->y();
|
|
||||||
short z=(graph->zoomY()+1) % gGraph::maxZoomY;
|
short z=(graph->zoomY()+1) % gGraph::maxZoomY;
|
||||||
graph->setZoomY(z);
|
graph->setZoomY(z);
|
||||||
qDebug() << "Mouse double clicked for" << graph->title() << z;
|
qDebug() << "Mouse double clicked for" << graph->title() << z;
|
||||||
|
@ -1095,7 +1095,7 @@ void MainWindow::RestartApplication(bool force_login,bool change_datafolder)
|
|||||||
if (QProcess::startDetached(apppath,args)) {
|
if (QProcess::startDetached(apppath,args)) {
|
||||||
::exit(0);
|
::exit(0);
|
||||||
//QApplication::instance()->exit();
|
//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
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user