Fixed a bug which caused PC to crash when an external GS editor was used, thx

to Richard for pointing me to the right place!


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@12686 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Philippe C.D. Robert 2002-02-22 18:48:23 +00:00
parent 29d6aeb29f
commit b317904de7

View file

@ -125,10 +125,12 @@
if([[ud objectForKey:ExternalEditor] isEqualToString:@"YES"])
{
[PCEditorController openFileInEditor:path];
return nil;
}
else
{
[self internalEditorForFile:path];
return [self internalEditorForFile:path];
}
}