diff options
Diffstat (limited to 'Tests/QtAutoUicInterface/mywidget.cpp')
-rw-r--r-- | Tests/QtAutoUicInterface/mywidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Tests/QtAutoUicInterface/mywidget.cpp b/Tests/QtAutoUicInterface/mywidget.cpp index b528b1a..885165b 100644 --- a/Tests/QtAutoUicInterface/mywidget.cpp +++ b/Tests/QtAutoUicInterface/mywidget.cpp @@ -1,9 +1,9 @@ #include "mywidget.h" -MyWidget::MyWidget(QWidget *parent) - : QWidget(parent), - ui(new Ui::MyWidget) +MyWidget::MyWidget(QWidget* parent) + : QWidget(parent) + , ui(new Ui::MyWidget) { ui->setupUi(this); } |