Browse Source

minor: removed obsolete virtual in GenericForm destructor

pull/2641/head
Nils Fenner 10 years ago
parent
commit
25727425e2
No known key found for this signature in database
GPG Key ID: 9591A163FF9BE04C
  1. 2
      src/widget/form/settings/genericsettings.h

2
src/widget/form/settings/genericsettings.h

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

Loading…
Cancel
Save