2008-02-10 23:53-EST Gregory John Casamento <greg_casamento@yahoo.com>

* Framework/PCEditorManager.m: Corrected problem with call to 
	NSLog(..) which was causing a crash.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@26050 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2008-02-11 04:54:08 +00:00
parent 87bc0ef57b
commit 171bf04b12

View file

@ -147,7 +147,7 @@ NSString *PCEditorDidResignActiveNotification =
// Determine if file not exist or file is directory
if (![fm fileExistsAtPath:filePath isDirectory:&isDir] || isDir)
{
NSLog(@"%@ doesn't exist!");
NSLog(@"%@ doesn't exist!",filePath);
return nil;
}