Skip to content
  • Andreas Pakulat's avatar
    Fix matching of partial paths on Windows · cf6e4b8d
    Andreas Pakulat authored
    
    
    The paths against which the match is done always have forward slashes (i.e.
    uniform separator on all platforms). However the needle passed in has
    backward slashes on Windows usually, since this is how the paths are shown
    to the users and what is natural on windows too. Even explicitly using
    forward slash in the needle does not work here, since then the needle is
    not detected as containing a path (hasPathSeparator is false since it uses
    the native separator).
    
    Since it seems that the code internally favors the 'uniform' separators
    using slashes, simply convert the needle from native to uniform separators
    and use the forward slash to decide whether the needle has a path in it.
    
    Side effect of this is that it is now possible to use forward slashes when
    typing into the locator UI on windows. The opposite does not work on Unix
    though. That could be considered a feature though for cross-platform
    developers.
    
    Task-number: QTCREATORBUG-12007
    Change-Id: I5064bd9c60936466dd04671ef42a578df26ea7b8
    Reviewed-by: default avatarDavid Schulz <david.schulz@digia.com>
    cf6e4b8d