Fixed FTBFS with clang caused by implicit default constructor definition.

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 6baf320283)
r14.0.x
Michele Calgaro 3 years ago
parent f01229968a
commit 9e9f8a1cb9
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -25,7 +25,7 @@
#include "extdatewidget.h"
#include "testwidget.h"
TestWidget::TestWidget( TQWidget *p=0, const char *name=0 ) : TDEMainWindow( p, name ) {
TestWidget::TestWidget( TQWidget *p, const char *name ) : TDEMainWindow( p, name ) {
TQWidget *w = new TQWidget(this);
glay = new TQGridLayout(w, 3, 2);

@ -33,7 +33,7 @@ class TestWidget : public TDEMainWindow {
Q_OBJECT
public:
TestWidget( TQWidget *parent, const char *name );
TestWidget(TQWidget *parent = NULL, const char *name = NULL);
~TestWidget() {}
public slots:

Loading…
Cancel
Save