summaryrefslogtreecommitdiff
path: root/tests/auto
diff options
context:
space:
mode:
authorTim Jenssen <tim.jenssen@theqtcompany.com>2016-05-30 12:59:34 +0200
committerTim Jenssen <tim.jenssen@theqtcompany.com>2016-05-30 11:06:51 +0000
commitf59759f9da451e26b33623d1a75ec37e74752133 (patch)
tree3cbab5e0d0fc669d494d0e033bed45308df70115 /tests/auto
parentb523eed4340da3c9e9c6424994980230b5161c1f (diff)
downloadqt-creator-f59759f9da451e26b33623d1a75ec37e74752133.tar.gz
msvc 2013 build fix
Change-Id: Ice81612dd358a51c6847a1c7dfbf5115ad43cbab Reviewed-by: hjk <hjk@theqtcompany.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/utils/treemodel/tst_treemodel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/utils/treemodel/tst_treemodel.cpp b/tests/auto/utils/treemodel/tst_treemodel.cpp
index ba53633837..f7cc39f1b9 100644
--- a/tests/auto/utils/treemodel/tst_treemodel.cpp
+++ b/tests/auto/utils/treemodel/tst_treemodel.cpp
@@ -53,7 +53,7 @@ static int countLevelItems(TreeItem *base, int level)
static TreeItem *createItem(const char *name)
{
- return new TreeItem({ QString::fromLatin1(name) });
+ return new TreeItem(QStringList {QString::fromLatin1(name)});
}
void tst_TreeModel::testIteration()