From 3da600dc339b4a4d41cb94ad8dc3630cdc0dcd0a Mon Sep 17 00:00:00 2001 From: Joel de Vahl Date: Tue, 13 Jan 2009 18:05:08 +0000 Subject: [PATCH] OSX server launcher fix --- src/osxlaunch/server.m | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/osxlaunch/server.m b/src/osxlaunch/server.m index 263fc4085..6c22efc55 100644 --- a/src/osxlaunch/server.m +++ b/src/osxlaunch/server.m @@ -28,12 +28,10 @@ NSString *string = [[NSString alloc] initWithData: data encoding: NSASCIIStringEncoding]; NSAttributedString *attrstr = [[NSAttributedString alloc] initWithString: string]; - [[self textStorage] beginEditing]; [[self textStorage] appendAttributedString: attrstr]; int length = [[self textStorage] length]; NSRange range = NSMakeRange(length, 0); [self scrollRangeToVisible: range]; - [[self textStorage] endEditing]; [attrstr release]; [string release];