removing old debug function in CGramDebug.cpp

This commit is contained in:
Clément Le Bihan
2020-04-06 02:07:58 +02:00
parent 94039b658b
commit 8eef2dc865
2 changed files with 1 additions and 12 deletions

View File

@@ -117,11 +117,4 @@ QVariant CGramModel::data(const QModelIndex &index, int role) const
green = green * 255U / 31U;
blue = blue * 255U / 31U;
return QColor(red, green, blue);
}
void CGramModel::enterEvent(QMouseEvent *event)
{
this->x = event->x();
this->y = event->y();
emit mouseEnter();
}
}