Clean up for some auto tests of the gui/kernel.

They are not dependent on QtWidgets.

Change-Id: Icbc0b0b6f0b72537fd3058cc038a1f5c4bf2aba7
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@nokia.com>
This commit is contained in:
Debao Zhang 2012-03-08 18:37:30 -08:00 committed by Qt by Nokia
parent 9f86923b5c
commit 37c46fee30
6 changed files with 7 additions and 9 deletions

View File

@ -4,7 +4,7 @@
CONFIG += testcase
TARGET = tst_qdrag
QT += widgets testlib
QT += testlib
SOURCES += tst_qdrag.cpp

View File

@ -40,13 +40,12 @@
****************************************************************************/
#include <QtGui>
#include <QApplication>
#include <QEvent>
struct MyApplication : public QApplication
struct MyApplication : public QGuiApplication
{
MyApplication(int& argc, char** argv)
: QApplication(argc, argv)
: QGuiApplication(argc, argv)
{}
bool event(QEvent * event)
@ -59,7 +58,7 @@ struct MyApplication : public QApplication
file.write(QByteArray("+external"));
return true;
} else {
return QApplication::event(event);
return QGuiApplication::event(event);
}
}
};

View File

@ -1,4 +1,4 @@
TEMPLATE = app
TARGET = qfileopeneventexternal
QT += core gui widgets
QT += core gui
SOURCES += qfileopeneventexternal.cpp

View File

@ -1,7 +1,7 @@
CONFIG += testcase
TARGET = tst_qkeysequence
QT += widgets testlib
QT += testlib
QT += core-private gui-private
SOURCES += tst_qkeysequence.cpp

View File

@ -1,6 +1,6 @@
CONFIG += testcase
TARGET = tst_qpalette
QT += widgets testlib
QT += testlib
SOURCES += tst_qpalette.cpp

View File

@ -43,7 +43,6 @@
#include <QtTest/QtTest>
#include "qpalette.h"
#include <qapplication.h>
class tst_QPalette : public QObject
{