# HG changeset patch # User timkelly # Date 1282834628 18000 # Node ID 2009dcd074b09ffdd5c2c6a0ad81da8f06e9612e # Parent 1c19331f819a8b2ac3a7a698fc278a4470c4154f fix bug 11939 diff -r 1c19331f819a -r 2009dcd074b0 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/SymbianSDK.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/SymbianSDK.java Thu Aug 26 09:45:25 2010 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/internal/sdk/core/model/SymbianSDK.java Thu Aug 26 09:57:08 2010 -0500 @@ -547,9 +547,9 @@ return; } // not there, check winscw - String winscwURELFullPathStr = getEPOCROOT(); - winscwURELFullPathStr += WINSCW_UREL_DIR; - IPath winscwURELPath = new Path(winscwURELFullPathStr); + String winscwUDEBFullPathStr = getEPOCROOT(); + winscwUDEBFullPathStr += WINSCW_UDEB_DIR; + IPath winscwURELPath = new Path(winscwUDEBFullPathStr); if (winscwURELPath != null && winscwURELPath.toFile().exists()){ if (winscwURELPath.append("avkon.dll").toFile().exists()){ sdkFeatures.add(ISymbianSDKFeatures.IS_AVKON_SUPPORTED); diff -r 1c19331f819a -r 2009dcd074b0 core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISymbianSDK.java --- a/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISymbianSDK.java Thu Aug 26 09:45:25 2010 -0500 +++ b/core/com.nokia.carbide.cpp.sdk.core/src/com/nokia/carbide/cpp/sdk/core/ISymbianSDK.java Thu Aug 26 09:57:08 2010 -0500 @@ -87,6 +87,7 @@ * Feature IDs are defined in ISymbianSDKFeatures. * @return set of features * @since 3.0 + * @see {@link ISymbianSDKFeatures} */ @SuppressWarnings("rawtypes") Set getSupportedFeatures();