diff options
author | Frans Englich <frans.englich@nokia.com> | 2009-08-20 14:30:19 (GMT) |
---|---|---|
committer | Frans Englich <frans.englich@nokia.com> | 2009-08-20 14:30:19 (GMT) |
commit | 2564ed5168b61e81deb0d847a9a8d24dbfa6b84d (patch) | |
tree | 66448f1336fe3c89bea37ae2be0b25e7cdb7953a /tests | |
parent | 1ec40470e6817ba1cd8cc1b06812a369d028dd9b (diff) | |
download | Qt-2564ed5168b61e81deb0d847a9a8d24dbfa6b84d.zip Qt-2564ed5168b61e81deb0d847a9a8d24dbfa6b84d.tar.gz Qt-2564ed5168b61e81deb0d847a9a8d24dbfa6b84d.tar.bz2 |
Fix build, the preprocessor is broken on windows.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qcombobox/tst_qcombobox.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tests/auto/qcombobox/tst_qcombobox.cpp b/tests/auto/qcombobox/tst_qcombobox.cpp index 9700839..b568c60 100644 --- a/tests/auto/qcombobox/tst_qcombobox.cpp +++ b/tests/auto/qcombobox/tst_qcombobox.cpp @@ -2260,11 +2260,11 @@ void tst_QComboBox::setItemDelegate() QComboBox comboBox; QStyledItemDelegate *itemDelegate = new QStyledItemDelegate; comboBox.setItemDelegate(itemDelegate); - QCOMPARE( #ifdef Q_CC_MWERKS - static_cast<QStyledItemDelegate *> + QCOMPARE(static_cast<QStyledItemDelegate *>(comboBox.itemDelegate()), itemDelegate); +#else + QCOMPARE(comboBox.itemDelegate(), itemDelegate); #endif - (comboBox.itemDelegate()), itemDelegate); } void tst_QComboBox::task253944_itemDelegateIsReset() @@ -2274,18 +2274,18 @@ void tst_QComboBox::task253944_itemDelegateIsReset() comboBox.setItemDelegate(itemDelegate); comboBox.setEditable(true); - QCOMPARE( #ifdef Q_CC_MWERKS - static_cast<QStyledItemDelegate *> + QCOMPARE(static_cast<QStyledItemDelegate *>(comboBox.itemDelegate()), itemDelegate); +#else + QCOMPARE(comboBox.itemDelegate(), itemDelegate); #endif - (comboBox.itemDelegate()), itemDelegate); comboBox.setStyleSheet("QComboBox { border: 1px solid gray; }"); - QCOMPARE( #ifdef Q_CC_MWERKS - static_cast<QStyledItemDelegate *> + QCOMPARE(static_cast<QStyledItemDelegate *>(comboBox.itemDelegate()), itemDelegate); +#else + QCOMPARE(comboBox.itemDelegate(), itemDelegate); #endif - (comboBox.itemDelegate()), itemDelegate); } |