Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2010-11-22 01:06:30 +0300
committerFelix Geyer <debfx@fobos.de>2010-11-22 01:06:30 +0300
commit230d24a123a04c08bfe8a209dd12f2e5b8a52379 (patch)
treeff19fd8704c40f50098954ddaa47cd1e7fab610b /tests/TestEntryModel.cpp
parenta428464573b0d99e07e2752bbd89b650889af2e8 (diff)
No longer use automoc.
Diffstat (limited to 'tests/TestEntryModel.cpp')
-rw-r--r--tests/TestEntryModel.cpp13
1 files changed, 2 insertions, 11 deletions
diff --git a/tests/TestEntryModel.cpp b/tests/TestEntryModel.cpp
index c8d7371e6..c1bedf415 100644
--- a/tests/TestEntryModel.cpp
+++ b/tests/TestEntryModel.cpp
@@ -15,6 +15,8 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "TestEntryModel.h"
+
#include <QtTest/QSignalSpy>
#include <QtTest/QTest>
@@ -23,15 +25,6 @@
#include "core/Group.h"
#include "gui/EntryModel.h"
-class TestEntryModel : public QObject
-{
- Q_OBJECT
-
-private Q_SLOTS:
- void initTestCase();
- void test();
-};
-
void TestEntryModel::initTestCase()
{
qRegisterMetaType<QModelIndex>("QModelIndex");
@@ -97,5 +90,3 @@ void TestEntryModel::test()
}
QTEST_MAIN(TestEntryModel);
-
-#include "TestEntryModel.moc"