mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-06-30 13:26:02 -04:00
More linux work.
This commit is contained in:
@ -30,9 +30,9 @@ public:
|
||||
/// Constructor that passes the parent to the base and installs
|
||||
/// the event filter.
|
||||
/// </summary>
|
||||
/// <param name="parent">The parent widget</param>
|
||||
explicit TableWidget(QWidget* parent = 0)
|
||||
: QTableWidget(parent)
|
||||
/// <param name="p">The parent widget</param>
|
||||
explicit TableWidget(QWidget* p = 0)
|
||||
: QTableWidget(p)
|
||||
{
|
||||
viewport()->installEventFilter(this);
|
||||
}
|
||||
@ -54,4 +54,4 @@ protected:
|
||||
|
||||
return QTableWidget::eventFilter(obj, e);
|
||||
}
|
||||
};
|
||||
};
|
||||
|
Reference in New Issue
Block a user