diff options
author | Bibiko <bibiko@eva.mpg.de> | 2011-02-02 20:29:37 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2011-02-02 20:29:37 +0000 |
commit | 957b8a38e9bc7a5f3f79eb6521d2adab2de9811a (patch) | |
tree | fdc5494af167416745a45d292c5bfd773a27e4b4 | |
parent | d61e3346e4805c3f2aa14b378f7bedecb09f637d (diff) | |
download | sequelpro-957b8a38e9bc7a5f3f79eb6521d2adab2de9811a.tar.gz sequelpro-957b8a38e9bc7a5f3f79eb6521d2adab2de9811a.tar.bz2 sequelpro-957b8a38e9bc7a5f3f79eb6521d2adab2de9811a.zip |
• forgotten to apply a change of a NoodleLineNumber method
-rw-r--r-- | Source/SPTextView.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPTextView.m b/Source/SPTextView.m index 7876cbd1..a36caed7 100644 --- a/Source/SPTextView.m +++ b/Source/SPTextView.m @@ -863,7 +863,7 @@ NSInteger alphabeticSort(id string1, id string2, void *reverse) */ - (NSUInteger) getLineNumberForCharacterIndex:(NSUInteger)anIndex { - return [lineNumberView lineNumberForCharacterIndex:anIndex inText:[self string]]+1; + return [lineNumberView lineNumberForCharacterIndex:anIndex]+1; } /** |