aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBibiko <bibiko@eva.mpg.de>2011-02-02 20:29:37 +0000
committerBibiko <bibiko@eva.mpg.de>2011-02-02 20:29:37 +0000
commit957b8a38e9bc7a5f3f79eb6521d2adab2de9811a (patch)
treefdc5494af167416745a45d292c5bfd773a27e4b4
parentd61e3346e4805c3f2aa14b378f7bedecb09f637d (diff)
downloadsequelpro-957b8a38e9bc7a5f3f79eb6521d2adab2de9811a.tar.gz
sequelpro-957b8a38e9bc7a5f3f79eb6521d2adab2de9811a.tar.bz2
sequelpro-957b8a38e9bc7a5f3f79eb6521d2adab2de9811a.zip
• forgotten to apply a change of a NoodleLineNumber method
-rw-r--r--Source/SPTextView.m2
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;
}
/**