* Framework/PCProjectManager.m: openProject to correct

bug #25565.   There was an extra semi-colon after the if
	statement in this method which was causing it to return
	before bringing the project window to the fron


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@27853 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2009-02-12 16:51:26 +00:00
parent cb81af5c42
commit 2e847b959a
2 changed files with 8 additions and 1 deletions

View file

@ -1,3 +1,10 @@
2009-02-12 11:58-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Framework/PCProjectManager.m: openProject to correct
bug #25565. There was an extra semi-colon after the if
statement in this method which was causing it to return
before bringing the project window to the front.
2009-02-11 19:45-EST Gregory John Casamento <greg_casamento@yahoo.com>
* Framework/PCEditorManager.m: Switch to editor and line in the

View file

@ -662,7 +662,7 @@ NSString *PCActiveProjectDidChangeNotification = @"PCActiveProjectDidChange";
if (filePath != nil)
{
if (![self openProjectAt:filePath]);
if (![self openProjectAt:filePath])
{
// No need to open alert panel.
// Panel was opened in openProjectAt:->loadProjectAt: method.