mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-03-18 08:33:06 +00:00
* 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:
parent
cb81af5c42
commit
2e847b959a
2 changed files with 8 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue