summaryrefslogtreecommitdiffstats
path: root/Source
Commit message (Expand)AuthorAgeFilesLines
* ENH: remove qt warnings from qt with MS compilerBill Hoffman2007-11-034-3/+7
* ENH: fix compile error on windowsBill Hoffman2007-11-031-1/+1
* ENH: Add interrupt button near progress bar.Clinton Stimpson2007-11-0313-264/+461
* STYLE: Nightly Version updateAndy Cedilnik2007-11-031-1/+1
* COMP: Fix build on Windows.Clinton Stimpson2007-11-021-1/+6
* ENH: add option for qt dialogBill Hoffman2007-11-021-0/+6
* STYLE: Add license info to code.Clinton Stimpson2007-11-027-0/+112
* ENH: Beginnings of a Qt UI for CMake.Clinton Stimpson2007-11-0211-0/+1007
* STYLE: Nightly Version updateAndy Cedilnik2007-11-021-1/+1
* ENH: create a directory for qt interface to cmakeBill Hoffman2007-11-011-0/+1
* ENH: Add more resolutions for CMake icons to avoid that bloated chunky blown ...David Cole2007-11-012-0/+0
* STYLE: Nightly Version updateAndy Cedilnik2007-11-011-1/+1
* ENH: minor fixKen Martin2007-10-311-1/+1
* ENH: added documentation for more variablesKen Martin2007-10-311-12/+358
* ENH: add CPACK_PROJECT_CONFIG_FILE option to CPackBill Hoffman2007-10-311-1/+9
* ENH: fix line lengthBill Hoffman2007-10-311-1/+2
* ENH: Add CPACK_SET_DESTDIR handling to enable packaging of installed files in...David Cole2007-10-3114-43/+127
* STYLE: Nightly Version updateAndy Cedilnik2007-10-311-1/+1
* ENH: cpack changes, remove the escape variable stuff as it is not needed if y...Bill Hoffman2007-10-312-26/+20
* BUG: fix undefined property FRAMEWORKKen Martin2007-10-301-0/+8
* BUG: fix bad set property code in cmakeKen Martin2007-10-301-1/+1
* STYLE: Nightly Version updateAndy Cedilnik2007-10-301-1/+1
* ENH: move list command to bootstrap commandsBill Hoffman2007-10-292-2/+2
* ENH: add ability to set installer icons, links to web pages, nsis code in the...Bill Hoffman2007-10-291-6/+25
* STYLE: Nightly Version updateAndy Cedilnik2007-10-291-1/+1
* STYLE: Nightly Version updateAndy Cedilnik2007-10-281-1/+1
* STYLE: Nightly Version updateAndy Cedilnik2007-10-271-1/+1
* STYLE: change wording of FIND_XXX() docs to be more correctAlexander Neundorf2007-10-261-2/+2
* STYLE: fixed misspellings of Mac OS XSean McBride2007-10-262-2/+2
* ENH: add support for CMAKE_FIND_PREFIX_PATH as discussed with Brad.Alexander Neundorf2007-10-265-2/+61
* STYLE: Nightly Version updateAndy Cedilnik2007-10-261-1/+1
* BUG: Fix bug#5590. When converting a relative path between two full paths on...Brad King2007-10-251-13/+6
* BUG: rename DEBIAN_PACKAGE_* variables to CPACK_DEBIAN_PACKAGE_* variablesAlexander Neundorf2007-10-251-11/+17
* STYLE: Nightly Version updateAndy Cedilnik2007-10-251-1/+1
* ENH: add ability to get documentaiton of a property from a scriptKen Martin2007-10-245-9/+83
* ENH: some more cleanup, fixes, and patch for HTML outputKen Martin2007-10-247-42/+213
* STYLE: Nightly Version updateAndy Cedilnik2007-10-241-1/+1
* COMP: fix for when STRICT is defined, and fix for props that have no docsKen Martin2007-10-232-3/+8
* STYLE: fix some long linesKen Martin2007-10-231-5/+10
* COMP: fix a problem with a shadowed varKen Martin2007-10-231-9/+6
* STYLE: Nightly Version updateAndy Cedilnik2007-10-231-1/+1
* COMP: fix some warnings and add some doc strings back inKen Martin2007-10-222-1/+6
* COMP: fix some warnings and add some doc strings back inKen Martin2007-10-225-74/+109
* ENH: fix spelling errorBill Hoffman2007-10-221-1/+1
* ENH: change to make the documentation class more generic, about halfway there...Ken Martin2007-10-222-6/+6
* ENH: change to make the documentation class more generic, about halfway there...Ken Martin2007-10-2244-916/+911
* STYLE: Nightly Version updateAndy Cedilnik2007-10-221-1/+1
* STYLE: Nightly Version updateAndy Cedilnik2007-10-211-1/+1
* STYLE: Nightly Version updateAndy Cedilnik2007-10-201-1/+1
* ENH: do not always add -arch flagsBill Hoffman2007-10-201-6/+23
iv class='del'>- return;
-#endif // Q_WS_WIN
-
-#ifdef Q_OS_SYMBIAN
- // Not supported on symbian
- if ( key == Qt::Key_Print )
- return;
-
- // Not supported on symbian
- if ( key == Qt::Key_SysReq )
- return;
-
- // Not supported on symbian
- if ( key >= Qt::Key_F25 && key <= Qt::Key_Super_R )
- return;
- if ( key >= Qt::Key_Hyper_L && key <= Qt::Key_Hyper_R )
- return;
- if ( key == Qt::Key_Help )
- return;
-
- // Not sure on how to add support for these yet
- if ( key >= Qt::Key_Direction_L && key <= Qt::Key_Direction_R )
- return;
-
- // Not supported on symbian
- if ( key >= Qt::Key_Exclam && key <= Qt::Key_Slash )
- return;
- if ( key >= Qt::Key_Colon && key <= Qt::Key_At )
- return;
- if ( key >= Qt::Key_BracketRight && key <= Qt::Key_ydiaeresis )
- return;
-#endif // Q_WS_WIN
-
- if ( key == Qt::Key_F1 )
- return; // Ignore for the moment
-
- QTest::keyPress( testWidget, (Qt::Key)key );
- while ( !testWidget->recievedKeyPress )
- qApp->processEvents();
- QKeyEvent* ke = testWidget->getLastKeyPress();
- QCOMPARE( ke->key(), key );
- if ( textExpected )
- QCOMPARE( ke->text(), text );
- testWidget->recievedKeyRelease = false;
- QTest::keyRelease( testWidget, (Qt::Key)key );
- while ( !testWidget->recievedKeyRelease )
- qApp->processEvents();
- ke = testWidget->getLastKeyRelease();
- QCOMPARE( ke->key(), key );
- if ( textExpected )
- QCOMPARE( ke->text(), text );
-}
-
-QTEST_MAIN(tst_QKeyEvent)
-#include "tst_qkeyevent.moc"
diff --git a/tests/auto/qnativesocketengine/tst_qnativesocketengine.cpp b/tests/auto/qnativesocketengine/tst_qnativesocketengine.cpp
index be0bfe3..dfc6b78 100644
--- a/tests/auto/qnativesocketengine/tst_qnativesocketengine.cpp
+++ b/tests/auto/qnativesocketengine/tst_qnativesocketengine.cpp
@@ -153,14 +153,14 @@ void tst_QNativeSocketEngine::simpleConnectToIMAP()
QVERIFY(socketDevice.initialize(QAbstractSocket::TcpSocket, QAbstractSocket::IPv4Protocol));
QVERIFY(socketDevice.state() == QAbstractSocket::UnconnectedState);
- const bool isConnected = socketDevice.connectToHost(QHostAddress(QtNetworkSettings::serverIP()), 143);
+ const bool isConnected = socketDevice.connectToHost(QtNetworkSettings::serverIP(), 143);
if (!isConnected) {
QVERIFY(socketDevice.state() == QAbstractSocket::ConnectingState);
QVERIFY(socketDevice.waitForWrite());
QVERIFY(socketDevice.state() == QAbstractSocket::ConnectedState);
}
QVERIFY(socketDevice.state() == QAbstractSocket::ConnectedState);
- QVERIFY(socketDevice.peerAddress() == QHostAddress(QtNetworkSettings::serverIP()));
+ QVERIFY(socketDevice.peerAddress() == QtNetworkSettings::serverIP());
// Wait for the greeting
QVERIFY(socketDevice.waitForRead());
@@ -592,7 +592,7 @@ void tst_QNativeSocketEngine::networkError()
QVERIFY(client.initialize(QAbstractSocket::TcpSocket, QAbstractSocket::IPv4Protocol));
- const bool isConnected = client.connectToHost(QHostAddress(QtNetworkSettings::serverIP()), 143);
+ const bool isConnected = client.connectToHost(QtNetworkSettings::serverIP(), 143);
if (!isConnected) {
QVERIFY(client.state() == QAbstractSocket::ConnectingState);
QVERIFY(client.waitForWrite());
diff --git a/tests/auto/qnetworkaccessmanager_and_qprogressdialog/tst_qnetworkaccessmanager_and_qprogressdialog.cpp b/tests/auto/qnetworkaccessmanager_and_qprogressdialog/tst_qnetworkaccessmanager_and_qprogressdialog.cpp
index 62e4ce5..4fee7fd 100644
--- a/tests/auto/qnetworkaccessmanager_and_qprogressdialog/tst_qnetworkaccessmanager_and_qprogressdialog.cpp
+++ b/tests/auto/qnetworkaccessmanager_and_qprogressdialog/tst_qnetworkaccessmanager_and_qprogressdialog.cpp
@@ -53,7 +53,9 @@
class tst_QNetworkAccessManager_And_QProgressDialog : public QObject
{
-Q_OBJECT
+ Q_OBJECT
+public:
+ tst_QNetworkAccessManager_And_QProgressDialog();
private slots:
void downloadCheck();
};
@@ -110,6 +112,11 @@ private:
QNetworkAccessManager netmanager;
};
+tst_QNetworkAccessManager_And_QProgressDialog::tst_QNetworkAccessManager_And_QProgressDialog()
+{
+ Q_SET_DEFAULT_IAP
+}
+
void tst_QNetworkAccessManager_And_QProgressDialog::downloadCheck()
{
DownloadCheckWidget widget;
diff --git a/tests/auto/qpropertyanimation/qpropertyanimation.pro b/tests/auto/qpropertyanimation/qpropertyanimation.pro
index 9199ac3..6d6ddbf 100644
--- a/tests/auto/qpropertyanimation/qpropertyanimation.pro
+++ b/tests/auto/qpropertyanimation/qpropertyanimation.pro
@@ -1,5 +1,5 @@
load(qttest_p4)
-QT = core
+QT = core gui
SOURCES += tst_qpropertyanimation.cpp
diff --git a/tests/auto/qscopedpointer/tst_qscopedpointer.cpp b/tests/auto/qscopedpointer/tst_qscopedpointer.cpp