You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
762 B
14 lines
762 B
class A
|
|
{
|
|
// crash (two parameter, 2nd string parameter has space)
|
|
void check(const QObject *object, const QStringList &strList = QStringList(QString(QLatin1String("one two"))));
|
|
// no crash (two parameter, 2nd string parameter has no space)
|
|
void check(const QObject *object, const QStringList &strList = QStringList(QString(QLatin1String("one"))));
|
|
// no crash (removed QLatin1String)
|
|
void check(const QObject *object, const QStringList &strList = QStringList(QString(("one two"))));
|
|
// no crash (removed QString(QLatin1String))
|
|
void check(const QObject *object, const QStringList &strList = QStringList());
|
|
// no crash (removed 1st parameter only)
|
|
void check(const QStringList &strList = QStringList(QString(QLatin1String("one two"))));
|
|
};
|