From 2e847b959a05e1b9581071b3bb2a33015b04c77c Mon Sep 17 00:00:00 2001 From: Gregory John Casamento Date: Thu, 12 Feb 2009 16:51:26 +0000 Subject: [PATCH] * 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 --- ChangeLog | 7 +++++++ Framework/PCProjectManager.m | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6290338..531868c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2009-02-12 11:58-EST Gregory John Casamento + + * 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 * Framework/PCEditorManager.m: Switch to editor and line in the diff --git a/Framework/PCProjectManager.m b/Framework/PCProjectManager.m index b1e6f01..d3493f2 100644 --- a/Framework/PCProjectManager.m +++ b/Framework/PCProjectManager.m @@ -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.