# HG changeset patch # User Ed Swartz # Date 1260293742 21600 # Node ID 7b3eeed5fa6af6abda740702e810ab06bb313334 # Parent 479ae9ce262c4c1fb0567d66350032b126bec33a Fix capitalization of library for Qt devkit support detection diff -r 479ae9ce262c -r 7b3eeed5fa6a 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 Tue Dec 08 11:35:12 2009 -0600 +++ b/qt/com.nokia.carbide.cpp.qt.core/src/com/nokia/carbide/cpp/internal/qt/core/QtFilter.java Tue Dec 08 11:35:42 2009 -0600 @@ -28,10 +28,10 @@ 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.lib").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$ + return context.getSDK().getReleaseRoot().append("armv5/lib/QtCore.lib").toFile(); //$NON-NLS-1$ } }