summaryrefslogtreecommitdiffstats
path: root/tests/auto/gui/kernel/qkeysequence/tst_qkeysequence.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/gui/kernel/qkeysequence/tst_qkeysequence.cpp')
-rw-r--r--tests/auto/gui/kernel/qkeysequence/tst_qkeysequence.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/auto/gui/kernel/qkeysequence/tst_qkeysequence.cpp b/tests/auto/gui/kernel/qkeysequence/tst_qkeysequence.cpp
index 766352f918..e479e7da24 100644
--- a/tests/auto/gui/kernel/qkeysequence/tst_qkeysequence.cpp
+++ b/tests/auto/gui/kernel/qkeysequence/tst_qkeysequence.cpp
@@ -131,7 +131,9 @@ private slots:
void parseString();
void fromString_data();
void fromString();
+#ifdef QT_BUILD_INTERNAL
void ensureSorted();
+#endif
void standardKeys_data();
void standardKeys();
void keyBindings();
@@ -299,9 +301,9 @@ void tst_QKeySequence::checkMultipleCodes()
* We must ensure that the keyBindings data is always sorted
* so that we can safely perform binary searches.
*/
+#ifdef QT_BUILD_INTERNAL
void tst_QKeySequence::ensureSorted()
{
-#if defined(QT_BUILD_INTERNAL)
uint N = QKeySequencePrivate::numberOfKeyBindings;
uint val = QKeySequencePrivate::keyBindings[0].shortcut;
for ( uint i = 1 ; i < N ; ++i) {
@@ -311,8 +313,8 @@ void tst_QKeySequence::ensureSorted()
QVERIFY(nextval >= val);
val = nextval;
}
-#endif
}
+#endif
void tst_QKeySequence::standardKeys_data()
{