Mercurial > hg > easyhg
changeset 412:498c2ca0b367
Typo fix only
author | Chris Cannam |
---|---|
date | Mon, 13 Jun 2011 16:56:01 +0100 |
parents | d0ebd797c5a1 |
children | 2a19d5706673 2af4b5b0bf83 |
files | src/common.cpp |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 += '\\';