# HG changeset patch # User timkelly # Date 1264431188 21600 # Node ID 3a264b9d91efd1d1ded5991dc5faff944eea0f2e # Parent ad2d5f6b8dcb92a0baac2f344250c76ac6df2212 Fix issues found with bug 10344. diff -r ad2d5f6b8dcb -r 3a264b9d91ef debuggercdi/com.nokia.cdt.debug.cw.symbian/src/com/nokia/cdt/debug/cw/symbian/SettingsData.java --- a/debuggercdi/com.nokia.cdt.debug.cw.symbian/src/com/nokia/cdt/debug/cw/symbian/SettingsData.java Fri Jan 22 13:01:48 2010 -0600 +++ b/debuggercdi/com.nokia.cdt.debug.cw.symbian/src/com/nokia/cdt/debug/cw/symbian/SettingsData.java Mon Jan 25 08:53:08 2010 -0600 @@ -281,7 +281,7 @@ if (isEmulatorRequired(buildConfig, mainExeHostPath, mainExeWorkspaceRelativeMMPPath)) { IPath releaseRoot = buildConfig.getSDK().getReleaseRoot(); - String winscwudeb = releaseRoot.toOSString() + File.separator + "WINSCW" + File.separator + "UDEB"; //$NON-NLS-1$ //$NON-NLS-2$ + String winscwudeb = releaseRoot.toOSString() + File.separator + "WINSCW" + File.separator + buildConfig.getTargetString(); //$NON-NLS-1$ //$NON-NLS-2$ String emulatorPath = winscwudeb + File.separator + "epoc.exe"; //$NON-NLS-1$ configuration.setAttribute(DebuggerCommonData.Host_App_Path, getCanonicalPath(emulatorPath)); diff -r ad2d5f6b8dcb -r 3a264b9d91ef qt/com.nokia.carbide.cpp.qt.core/src/com/nokia/carbide/cpp/internal/qt/core/QtFilter.java --- a/qt/com.nokia.carbide.cpp.qt.core/src/com/nokia/carbide/cpp/internal/qt/core/QtFilter.java Fri Jan 22 13:01:48 2010 -0600 +++ b/qt/com.nokia.carbide.cpp.qt.core/src/com/nokia/carbide/cpp/internal/qt/core/QtFilter.java Mon Jan 25 08:53:08 2010 -0600 @@ -28,7 +28,7 @@ if (context.getPlatformString().equals(ISymbianBuildContext.EMULATOR_PLATFORM)) { return context.getSDK().getReleaseRoot().append(context.getPlatformString()). - append(context.getTargetString()).append("qtcore.lib").toFile(); //$NON-NLS-1$ + append(context.getTargetString()).append("QtCore.dll").toFile(); //$NON-NLS-1$ } else { // for non-emulator targets, check in the armv5/lib directory (ARMV5 and GCCE) return context.getSDK().getReleaseRoot().append("armv5/lib/qtcore.lib").toFile(); //$NON-NLS-1$