# HG changeset patch # User Ed Swartz # Date 1260369117 21600 # Node ID 3d9b565b1b7215ee13135801360bbeaa154e9809 # Parent 1003c657f83ad859187c60e1f011e3c47d6e7b6e For Linux, fix another case sensitivty check so resource change listener works diff -r 1003c657f83a -r 3d9b565b1b72 project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/internal/cpp/epoc/engine/model/WorkspaceModelProvider.java --- a/project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/internal/cpp/epoc/engine/model/WorkspaceModelProvider.java Tue Dec 08 15:31:51 2009 -0600 +++ b/project/com.nokia.carbide.cpp.epoc.engine/src/com/nokia/carbide/internal/cpp/epoc/engine/model/WorkspaceModelProvider.java Wed Dec 09 08:31:57 2009 -0600 @@ -88,7 +88,7 @@ return path; } try { - return new Path(file.getCanonicalPath()); + return FileUtils.findMatchingPathCaseInsensitive(new Path(file.getCanonicalPath())); } catch (IOException e) { EpocEnginePlugin.log(e); return new Path(file.getAbsolutePath());