summaryrefslogtreecommitdiff
path: root/tests/designer
diff options
context:
space:
mode:
authorNikolai Kosjar <nikolai.kosjar@digia.com>2013-11-26 09:48:05 +0100
committerNikolai Kosjar <nikolai.kosjar@digia.com>2013-11-26 11:52:33 +0100
commitda7b861e694ab433b5a44af663dbdab9e88d7ca5 (patch)
tree932562fc6c07947be788b93094c4626305325332 /tests/designer
parentc0704c2091d603e67ba42bff8c4a6c9717deb8a4 (diff)
downloadqt-creator-da7b861e694ab433b5a44af663dbdab9e88d7ca5.tar.gz
Designer: Tests: Remove reference data
...it's mostly bloat. We can easily check for the function declarations in the definitions in the resulting document. Change-Id: I9022faf97a78ae599825ec891011117d65ea0aa5 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'tests/designer')
-rw-r--r--tests/designer/gotoslot_withoutProject/reference_form.cpp22
-rw-r--r--tests/designer/gotoslot_withoutProject/reference_form.h27
2 files changed, 0 insertions, 49 deletions
diff --git a/tests/designer/gotoslot_withoutProject/reference_form.cpp b/tests/designer/gotoslot_withoutProject/reference_form.cpp
deleted file mode 100644
index fc313de178..0000000000
--- a/tests/designer/gotoslot_withoutProject/reference_form.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-// Copyright header
-
-#include "form.h"
-#include "ui_form.h"
-
-Form::Form(QWidget *parent) :
- QWidget(parent),
- ui(new Ui::Form)
-{
- ui->setupUi(this);
-}
-
-Form::~Form()
-{
- delete ui;
-}
-
-
-void Form::on_pushButton_clicked()
-{
-
-}
diff --git a/tests/designer/gotoslot_withoutProject/reference_form.h b/tests/designer/gotoslot_withoutProject/reference_form.h
deleted file mode 100644
index 68e66ff679..0000000000
--- a/tests/designer/gotoslot_withoutProject/reference_form.h
+++ /dev/null
@@ -1,27 +0,0 @@
-// Copyright header
-
-#ifndef FORM_H
-#define FORM_H
-
-#include <QWidget>
-
-namespace Ui {
-class Form;
-}
-
-class Form : public QWidget
-{
- Q_OBJECT
-
-public:
- explicit Form(QWidget *parent = 0);
- ~Form();
-
-private slots:
- void on_pushButton_clicked();
-
-private:
- Ui::Form *ui;
-};
-
-#endif // FORM_H