# HG changeset patch # User Chris Cannam # Date 1307980561 -3600 # Node ID 498c2ca0b3677c86682e43962b189d60167fef5a # Parent d0ebd797c5a12b12117c6cf000a2ed4604d0797c Typo fix only diff -r d0ebd797c5a1 -r 498c2ca0b367 src/common.cpp --- a/src/common.cpp Tue Jun 07 11:00:16 2011 +0100 +++ b/src/common.cpp Mon Jun 13 16:56:01 2011 +0100 @@ -262,7 +262,7 @@ { QString d; for (int i = 0; i < s.length(); ++i) { - // backslash-u escaped with another backslash: replace with a + // backslash escaped with another backslash: replace with a // single backslash and skip on if (i+1 < s.length() && s[i] == '\\' && s[i+1] == '\\') { d += '\\';