aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@nokia.com>2011-09-07 07:43:37 +0200
committerEike Ziller <eike.ziller@nokia.com>2011-09-07 12:45:30 +0200
commit23c3fb7c5f5c5ff9b92eac121ae988cfae4f4aad (patch)
treed3338fd3b5fa3d3142d3f3249c5836ef9d8fd07e
parent51d0e389511f275630a5b3ac85eae47a0f4cfb70 (diff)
Harmattan: Fix initial packaging icon.
The code had not been updated when the application icon file name changed in the wizard. Change-Id: I3f489ca09ac1bda4f10166235692a43ca23e638a Reviewed-on: http://codereview.qt.nokia.com/4305 Reviewed-by: Qt Sanity Bot <qt_sanity_bot@ovi.com> Reviewed-by: Eike Ziller <eike.ziller@nokia.com>
-rw-r--r--src/plugins/remotelinux/qt4maemotarget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/remotelinux/qt4maemotarget.cpp b/src/plugins/remotelinux/qt4maemotarget.cpp
index 3b3e1d3b8a..26bbb2c4c3 100644
--- a/src/plugins/remotelinux/qt4maemotarget.cpp
+++ b/src/plugins/remotelinux/qt4maemotarget.cpp
@@ -704,7 +704,7 @@ void AbstractDebBasedQt4MaemoTarget::handleTargetAddedSpecial()
// Such a file is created by the mobile wizards.
const QString iconPath = project()->projectDirectory()
+ QLatin1Char('/') + project()->displayName()
- + QLatin1String(".png");
+ + QLatin1String("64.png");
if (QFileInfo(iconPath).exists())
setPackageManagerIcon(iconPath);
}