More linux work.

This commit is contained in:
mfeemster
2014-12-10 21:50:15 -08:00
parent 0438827ba5
commit a9ecb6a78e
61 changed files with 1415 additions and 627 deletions

View File

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