From 23c3fb7c5f5c5ff9b92eac121ae988cfae4f4aad Mon Sep 17 00:00:00 2001 From: Christian Kandeler Date: Wed, 7 Sep 2011 07:43:37 +0200 Subject: [PATCH] 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 Reviewed-by: Eike Ziller --- src/plugins/remotelinux/qt4maemotarget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/remotelinux/qt4maemotarget.cpp b/src/plugins/remotelinux/qt4maemotarget.cpp index 3b3e1d3b8a1..26bbb2c4c33 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); }