summaryrefslogtreecommitdiffstats
path: root/src/testlib/qtestelement.cpp
diff options
context:
space:
mode:
authorEdward Welbourne <edward.welbourne@qt.io>2022-02-15 15:17:43 +0100
committerEdward Welbourne <edward.welbourne@qt.io>2022-03-14 20:16:35 +0100
commitb15e01ff4e004fc89bcec205f0ee26e2e628b041 (patch)
tree9ea0ac95a1f1a1c1d6a72337793287efcb8b2630 /src/testlib/qtestelement.cpp
parentd8545347899512ec0f57707d15545c561ff57eff (diff)
Use LogElementType rather than int as test-element type
All callers do in fact pass members of the enum, so just making the defualt value be LET_Undefined rather than -1 eliminates any need for it to be an int. Change-Id: Ic1c9ae1522363666d1208aba60d4b4df5eff6ce0 Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'src/testlib/qtestelement.cpp')
-rw-r--r--src/testlib/qtestelement.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/testlib/qtestelement.cpp b/src/testlib/qtestelement.cpp
index e89accd82c..9fcaa74187 100644
--- a/src/testlib/qtestelement.cpp
+++ b/src/testlib/qtestelement.cpp
@@ -1,6 +1,6 @@
/****************************************************************************
**
-** Copyright (C) 2016 The Qt Company Ltd.
+** Copyright (C) 2022 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the QtTest module of the Qt Toolkit.
@@ -41,7 +41,7 @@
QT_BEGIN_NAMESPACE
-QTestElement::QTestElement(int type)
+QTestElement::QTestElement(QTest::LogElementType type)
: QTestCoreElement<QTestElement>(type)
{
}