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.