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
+1 -8
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();
}
}
-4
View File
@@ -86,10 +86,6 @@ public:
int columnCount(const QModelIndex &parent) const override;
//! @brief Return a data representing the table cell.
QVariant data(const QModelIndex &index, int role) const override;
//! @brief Qt Mouse hover enter event
void enterEvent(QMouseEvent *event);
signals:
void mouseEnter();
};
namespace ComSquare::Debugger