summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkh1 <karsten.heimrich@digia.com>2014-10-16 14:50:50 +0200
committerKarsten Heimrich <karsten.heimrich@digia.com>2014-10-16 15:27:54 +0200
commit522067849deaf6b3a942a1133351e927baa612fb (patch)
tree8e34802a2f166cc1b7982a59ed750a6d4daf0aaa
parent4ebfecf411c02cf8c357f29b28f2e17a3a843c19 (diff)
Compile fix for Visual Studio 11.
Change-Id: Ief110f24055ca6204ace5986707e154b23aad312 Reviewed-by: Kai Koehne <kai.koehne@theqtcompany.com> Reviewed-by: Christian Stenger <christian.stenger@digia.com>
-rw-r--r--src/libs/installer/binaryformat.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/installer/binaryformat.cpp b/src/libs/installer/binaryformat.cpp
index 0a944a278..d90bdaca5 100644
--- a/src/libs/installer/binaryformat.cpp
+++ b/src/libs/installer/binaryformat.cpp
@@ -261,7 +261,7 @@ void Resource::copyData(Resource *resource, QFileDevice *out)
unique name assigned using QUuid.
*/
ResourceCollection::ResourceCollection()
- : ResourceCollection(QUuid::createUuid().toByteArray())
+ : m_name(QUuid::createUuid().toByteArray())
{
}