diff options
author | jakob <jakob@eggerapps.at> | 2009-03-26 14:06:40 +0000 |
---|---|---|
committer | jakob <jakob@eggerapps.at> | 2009-03-26 14:06:40 +0000 |
commit | 6d95384f0d5bd7552a61d7a1b080a2fc5407c898 (patch) | |
tree | b32ebec1e9bf7ef391d17e0d115c255e2bc66e56 /Source | |
parent | e646d2046e879dba36deb20624bdaa5eb5d04257 (diff) | |
download | sequelpro-6d95384f0d5bd7552a61d7a1b080a2fc5407c898.tar.gz sequelpro-6d95384f0d5bd7552a61d7a1b080a2fc5407c898.tar.bz2 sequelpro-6d95384f0d5bd7552a61d7a1b080a2fc5407c898.zip |
- updated the backtickQuotedString method to be 10.4 compatible (and to compile as well. thanks marius!)
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPStringAdditions.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPStringAdditions.m b/Source/SPStringAdditions.m index 80498d91..a26a878e 100644 --- a/Source/SPStringAdditions.m +++ b/Source/SPStringAdditions.m @@ -128,7 +128,7 @@ [workingCopy replaceOccurrencesOfString: @"`" withString: @"``" options: NSLiteralSearch - range: NSMakeRange(0, [quotedString length]) ]; + range: NSMakeRange(0, [workingCopy length]) ]; // Add the quotes around the string NSString *quotedString = [NSString stringWithFormat: @"`%@`", workingCopy]; |