Commit last logged change

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@26107 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Sergii Stoian 2008-02-20 00:02:09 +00:00
parent d574a0a9cc
commit a8bd14c991

View file

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