Skip to content
Snippets Groups Projects
Commit c95874f4 authored by Tobias Hunger's avatar Tobias Hunger
Browse files

Fix: Do not assign false to a bool*

Dereference the pointer first...

Change-Id: Ifb5100684e76cacb658ff9fd8fd2003f22947eb4
Reviewed-on: http://codereview.qt.nokia.com/345


Reviewed-by: default avatarQt Sanity Bot <qt_sanity_bot@ovi.com>
Reviewed-by: default avatarChristian Kandeler <christian.kandeler@nokia.com>
parent 04039ac6
No related branches found
No related tags found
No related merge requests found
......@@ -111,7 +111,7 @@ QByteArray MobileApp::generateFileExtended(int fileType,
{
Q_UNUSED(comment);
QByteArray data;
versionAndCheckSum = false;
*versionAndCheckSum = false;
switch (fileType) {
case MobileAppGeneratedFileInfo::MainWindowCppFile:
data = readBlob(path(MainWindowCppOrigin), errorMessage);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment