// // CHGetURLCommand.mm // Chimera // // Created by David Hyatt on Thu Apr 18 2002. // Copyright (c) 2001 __MyCompanyName__. All rights reserved. // #import "CHGetURLCommand.h" #import @implementation CHGetURLCommand - (id)performDefaultImplementation { id controller = [[NSApp delegate] openBrowserWindowWithURLString: [self directParameter]]; [[[controller getMyBrowserView] getBrowserView] setActive: YES]; return nil; } @end