apps-projectcenter/Library/PCProject+ComponentHandling.m
Sergii Stoian f9ab35a030 Start refactoring editor part
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/branches/UNSTABLE_0_4@18089 72102866-910b-0410-8b05-ffd578937521
2003-11-16 22:57:50 +00:00

32 lines
625 B
Objective-C

/*
* PCProject+ComponentHandling.m created by probert on 2002-02-10 09:50:56 +0000
*
* Project ProjectCenter
*
* Created with ProjectCenter - http://www.gnustep.org
*
* $Id$
*/
#include "PCProject+ComponentHandling.h"
#include "PCDefines.h"
#include "PCProject.h"
#include "PCProjectWindow.h"
#include "ProjectComponent.h"
#include "PCProjectLauncher.h"
#include "PCEditor.h"
@implementation PCProject (ComponentHandling)
- (void)runSelectedTarget:(id)sender
{
if (!projectLauncher)
{
projectLauncher = [[PCProjectLauncher alloc] initWithProject:self];
}
[projectLauncher run:sender];
}
@end