Skip to content
Snippets Groups Projects
Commit 78295351 authored by Christian Kandeler's avatar Christian Kandeler Committed by Tobias Hunger
Browse files

Maemo: Don't unify packaging metadata between targets as rigorously.

This allows people to do external changes to their files without
Creator overwriting them.

Change-Id: I71fc7cf6dabb9a61762992b8c01f971f563e17ab
Reviewed-on: http://codereview.qt.nokia.com/12


Reviewed-by: default avatarTobias Hunger <tobias.hunger@nokia.com>
parent ed0f9f67
No related branches found
No related tags found
No related merge requests found
......@@ -268,9 +268,11 @@ void AbstractQt4MaemoTarget::handleTargetAdded(ProjectExplorer::Target *target)
this, SLOT(handleTargetAdded(ProjectExplorer::Target*)));
connect(project(), SIGNAL(aboutToRemoveTarget(ProjectExplorer::Target*)),
SLOT(handleTargetToBeRemoved(ProjectExplorer::Target*)));
if (createTemplates() == ActionFailed)
const ActionStatus status = createTemplates();
if (status == ActionFailed)
return;
initPackagingSettingsFromOtherTarget();
if (status == ActionSuccessful) // Don't do this when the packaging data already exists.
initPackagingSettingsFromOtherTarget();
handleTargetAddedSpecial();
m_isInitialized = true;
}
......
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