From a8bd14c991554b74d3b6a6a8a45f18796c8527b9 Mon Sep 17 00:00:00 2001 From: Sergii Stoian Date: Wed, 20 Feb 2008 00:02:09 +0000 Subject: [PATCH] Commit last logged change git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@26107 72102866-910b-0410-8b05-ffd578937521 --- Framework/PCEditorManager.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Framework/PCEditorManager.m b/Framework/PCEditorManager.m index 02f2a08..e8b423f 100644 --- a/Framework/PCEditorManager.m +++ b/Framework/PCEditorManager.m @@ -147,14 +147,14 @@ NSString *PCEditorDidResignActiveNotification = // Determine if file not exist or file is directory if (![fm fileExistsAtPath:filePath isDirectory:&isDir] || isDir) { - NSLog(@"%@ doesn't exist!",filePath); + NSLog(@"%@ doesn't exist!", filePath); return nil; } // Determine if file is text file if (![[PCFileManager defaultManager] isTextFile:filePath]) { - NSLog(@"%@ is not plan text file!"); + NSLog(@"%@ is not plan text file!", filePath); return nil; }