1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Revert "minor: removed obsolete virtual in GenericForm destructor"

This reverts commit 25727425e2.
This commit is contained in:
tux3 2015-12-10 20:41:28 +01:00
parent 25727425e2
commit 34fc580a5a
No known key found for this signature in database
GPG Key ID: 7E086DD661263264

View File

@ -25,7 +25,7 @@ class GenericForm : public QWidget
Q_OBJECT
public:
GenericForm(const QPixmap &icon) : formIcon(icon) {;}
~GenericForm() {}
virtual ~GenericForm() {}
virtual QString getFormName() = 0;
QPixmap getFormIcon() {return formIcon;}