Make qtextobject autotest build without widgets
Change-Id: I9ea79b62d22faeccc07d8c21a0d8f032b40abef0 Reviewed-by: Lars Knoll <lars.knoll@nokia.com>
This commit is contained in:
parent
6aa09123df
commit
a9eb513019
@ -5,7 +5,8 @@
|
|||||||
CONFIG += testcase
|
CONFIG += testcase
|
||||||
CONFIG += parallel_test
|
CONFIG += parallel_test
|
||||||
TARGET = tst_qtextobject
|
TARGET = tst_qtextobject
|
||||||
QT += widgets testlib
|
QT += testlib
|
||||||
|
!contains(QT_CONFIG, no-widgets): QT += widgets
|
||||||
SOURCES += tst_qtextobject.cpp
|
SOURCES += tst_qtextobject.cpp
|
||||||
|
|
||||||
|
|
||||||
|
@ -46,7 +46,9 @@
|
|||||||
#include <qdebug.h>
|
#include <qdebug.h>
|
||||||
#include <qtextobject.h>
|
#include <qtextobject.h>
|
||||||
#include <qtextdocument.h>
|
#include <qtextdocument.h>
|
||||||
|
#ifndef QT_NO_WIDGETS
|
||||||
#include <qtextedit.h>
|
#include <qtextedit.h>
|
||||||
|
#endif
|
||||||
#include <qtextcursor.h>
|
#include <qtextcursor.h>
|
||||||
|
|
||||||
class tst_QTextObject : public QObject
|
class tst_QTextObject : public QObject
|
||||||
@ -58,7 +60,9 @@ public:
|
|||||||
virtual ~tst_QTextObject();
|
virtual ~tst_QTextObject();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
#ifndef QT_NO_WIDGETS
|
||||||
void getSetCheck();
|
void getSetCheck();
|
||||||
|
#endif
|
||||||
void testStandAloneTextObject();
|
void testStandAloneTextObject();
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -70,6 +74,7 @@ tst_QTextObject::~tst_QTextObject()
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef QT_NO_WIDGETS
|
||||||
// Testing get/set functions
|
// Testing get/set functions
|
||||||
void tst_QTextObject::getSetCheck()
|
void tst_QTextObject::getSetCheck()
|
||||||
{
|
{
|
||||||
@ -102,6 +107,7 @@ void tst_QTextObject::getSetCheck()
|
|||||||
obj2.setUserState(INT_MAX);
|
obj2.setUserState(INT_MAX);
|
||||||
QCOMPARE(INT_MAX, obj2.userState());
|
QCOMPARE(INT_MAX, obj2.userState());
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
class TestTextObject : public QTextObject
|
class TestTextObject : public QTextObject
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user