fix bug 11170. Don't add pkg to sis builder for WINSCW
--- a/qt/com.nokia.carbide.cpp.qt.ui/src/com/nokia/carbide/cpp/internal/qt/ui/QtUIPlugin.java Fri Apr 23 11:41:51 2010 -0500
+++ b/qt/com.nokia.carbide.cpp.qt.ui/src/com/nokia/carbide/cpp/internal/qt/ui/QtUIPlugin.java Fri Apr 23 13:46:26 2010 -0500
@@ -102,7 +102,7 @@
IFile file = project.getFile(project.getName() + underscore + config.getPlatformString().toLowerCase() +
underscore + config.getTargetString().toLowerCase() + ".pkg"); //$NON-NLS-1$
- if (file == null || !file.exists() && config.getPlatformString() != ISymbianBuildContext.EMULATOR_PLATFORM) {
+ if (file == null || !file.exists() && !config.getPlatformString().equals(ISymbianBuildContext.EMULATOR_PLATFORM)) {
// Qt 4.6 only creates one PKG file per project. Do not add for WINSCW
file = project.getFile(project.getName() + underscore + template + ".pkg"); //$NON-NLS-1$
}