summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/moc/tst_moc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/tools/moc/tst_moc.cpp')
-rw-r--r--tests/auto/tools/moc/tst_moc.cpp14
1 files changed, 6 insertions, 8 deletions
diff --git a/tests/auto/tools/moc/tst_moc.cpp b/tests/auto/tools/moc/tst_moc.cpp
index 2bc0cf1800..01d207b080 100644
--- a/tests/auto/tools/moc/tst_moc.cpp
+++ b/tests/auto/tools/moc/tst_moc.cpp
@@ -1804,16 +1804,14 @@ signals:
class QTBUG12260_defaultTemplate_Object : public QObject
{ Q_OBJECT
public slots:
- void doSomething(QHash<QString, QVariant> values = QHash<QString, QVariant>() ) { Q_UNUSED(values); }
- void doSomethingElse(QSharedPointer<QVarLengthArray<QString, (16 >> 2)> > val
- = QSharedPointer<QVarLengthArray<QString, (16 >> 2)> >() )
- { Q_UNUSED(val); }
+ void doSomething(QHash<QString, QVariant> = QHash<QString, QVariant>() ) {}
+ void doSomethingElse(QSharedPointer<QVarLengthArray<QString, (16 >> 2)> >
+ = QSharedPointer<QVarLengthArray<QString, (16 >> 2)> >() ) {}
- void doAnotherThing(bool a = (1 < 3), bool b = (1 > 4)) { Q_UNUSED(a); Q_UNUSED(b); }
+ void doAnotherThing(bool = (1 < 3), bool = (1 > 4)) {}
- void performSomething(QList<QList<QString>> e = QList<QList<QString>>(8 < 1),
- QHash<int, QList<QString>> h = QHash<int, QList<QString>>())
- { Q_UNUSED(e); Q_UNUSED(h); }
+ void performSomething(QList<QList<QString>> = QList<QList<QString>>(8 < 1),
+ QHash<int, QList<QString>> = QHash<int, QList<QString>>()) {}
};