diff options
author | Brad King <brad.king@kitware.com> | 2014-09-22 13:13:01 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2014-09-22 13:13:01 (GMT) |
commit | e6f0bb7b1577923b6252370a6c8dd2db202dece7 (patch) | |
tree | 3076cd22c65c6903b745b37201dd2b915f5bd5a6 /Tests/QtAutogen/multiplewidgets.cpp | |
parent | d8dde37d609fd0badfa4c9d13c927c2d2ed27902 (diff) | |
parent | e3c97a1914aa0a521b55b53ab1b0d71732c5e466 (diff) | |
download | CMake-e6f0bb7b1577923b6252370a6c8dd2db202dece7.zip CMake-e6f0bb7b1577923b6252370a6c8dd2db202dece7.tar.gz CMake-e6f0bb7b1577923b6252370a6c8dd2db202dece7.tar.bz2 |
Merge topic 'autogen-fixes'
e3c97a19 QtAutogen: Process all ui files in a source file (#14981).
b8877b1d QtAutogen: Add source files to target when only AUTORCC is used.
Diffstat (limited to 'Tests/QtAutogen/multiplewidgets.cpp')
-rw-r--r-- | Tests/QtAutogen/multiplewidgets.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Tests/QtAutogen/multiplewidgets.cpp b/Tests/QtAutogen/multiplewidgets.cpp new file mode 100644 index 0000000..f143875 --- /dev/null +++ b/Tests/QtAutogen/multiplewidgets.cpp @@ -0,0 +1,19 @@ + +#include "multiplewidgets.h" + +#include "ui_widget1.h" +#include "ui_widget2.h" + +Widget1::Widget1(QWidget *parent) + : QWidget(parent), + ui(new Ui::Widget1) +{ + ui->setupUi(this); +} + +Widget2::Widget2(QWidget *parent) + : QWidget(parent), + ui(new Ui::Widget2) +{ + ui->setupUi(this); +} |