diff options
author | Sebastian Holtermann <sebholt@xwmw.org> | 2016-11-25 12:19:32 (GMT) |
---|---|---|
committer | Sebastian Holtermann <sebholt@xwmw.org> | 2016-11-29 16:16:33 (GMT) |
commit | d675004dbac12a938cf60fac39e5b9b81bbb6a99 (patch) | |
tree | e2be2e3949af0b52310bc21d3e5fc1bee8fff130 /Tests/QtAutogen/sub | |
parent | cb4bc19ae1b2f61165543ef926037936b179414d (diff) | |
download | CMake-d675004dbac12a938cf60fac39e5b9b81bbb6a99.zip CMake-d675004dbac12a938cf60fac39e5b9b81bbb6a99.tar.gz CMake-d675004dbac12a938cf60fac39e5b9b81bbb6a99.tar.bz2 |
QtAutogen tests: Rename uiconly target to camel case uicOnly
Also move uicOnly sources to dedicated uicOnlySource directory.
Diffstat (limited to 'Tests/QtAutogen/sub')
-rw-r--r-- | Tests/QtAutogen/sub/uiconly.cpp | 13 | ||||
-rw-r--r-- | Tests/QtAutogen/sub/uiconly.h | 20 | ||||
-rw-r--r-- | Tests/QtAutogen/sub/uiconly.ui | 24 |
3 files changed, 0 insertions, 57 deletions
diff --git a/Tests/QtAutogen/sub/uiconly.cpp b/Tests/QtAutogen/sub/uiconly.cpp deleted file mode 100644 index ac22789..0000000 --- a/Tests/QtAutogen/sub/uiconly.cpp +++ /dev/null @@ -1,13 +0,0 @@ - -#include "uiconly.h" - -UicOnly::UicOnly(QWidget* parent) - : QWidget(parent) - , ui(new Ui::UicOnly) -{ -} - -int main() -{ - return 0; -} diff --git a/Tests/QtAutogen/sub/uiconly.h b/Tests/QtAutogen/sub/uiconly.h deleted file mode 100644 index 9b0b1b4..0000000 --- a/Tests/QtAutogen/sub/uiconly.h +++ /dev/null @@ -1,20 +0,0 @@ - -#ifndef UIC_ONLY_H -#define UIC_ONLY_H - -#include <QWidget> -#include <memory> - -#include "ui_uiconly.h" - -class UicOnly : public QWidget -{ - Q_OBJECT -public: - explicit UicOnly(QWidget* parent = 0); - -private: - const std::auto_ptr<Ui::UicOnly> ui; -}; - -#endif diff --git a/Tests/QtAutogen/sub/uiconly.ui b/Tests/QtAutogen/sub/uiconly.ui deleted file mode 100644 index 13fb832..0000000 --- a/Tests/QtAutogen/sub/uiconly.ui +++ /dev/null @@ -1,24 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<ui version="4.0"> - <class>UicOnly</class> - <widget class="QWidget" name="UicOnly"> - <property name="geometry"> - <rect> - <x>0</x> - <y>0</y> - <width>400</width> - <height>300</height> - </rect> - </property> - <property name="windowTitle"> - <string>Form</string> - </property> - <layout class="QHBoxLayout" name="horizontalLayout"> - <item> - <widget class="QTreeView" name="treeView"/> - </item> - </layout> - </widget> - <resources/> - <connections/> -</ui> |