summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/second_widget.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2014-03-25 01:26:27 +0100
committerStephen Kelly <steveire@gmail.com>2014-03-25 01:39:03 +0100
commit71a11252e95797113ecb1a969386f496b7d4861b (patch)
treeb5cac8379fc7a3aa35a055ded585498195e7b930 /Tests/QtAutogen/second_widget.h
parent261acd91093ba5f2bf79f38a9632887ab2dd5f1c (diff)
downloadcmake-71a11252e95797113ecb1a969386f496b7d4861b.tar.gz
QtAutogen: Fix use of multiple ui files in a single target.
Don't store a mapping of the directory to the ui file. The directory will be a unique key, allowing only one ui file to be specified. Use the source file name instead as the mapping key.
Diffstat (limited to 'Tests/QtAutogen/second_widget.h')
-rw-r--r--Tests/QtAutogen/second_widget.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/Tests/QtAutogen/second_widget.h b/Tests/QtAutogen/second_widget.h
new file mode 100644
index 0000000000..fe4d175f71
--- /dev/null
+++ b/Tests/QtAutogen/second_widget.h
@@ -0,0 +1,19 @@
+
+#include <QWidget>
+
+namespace Ui
+{
+class SecondWidget;
+}
+
+class SecondWidget : public QWidget
+{
+ Q_OBJECT
+public:
+ explicit SecondWidget(QWidget *parent = 0);
+
+ ~SecondWidget();
+
+private:
+ Ui::SecondWidget* ui;
+};