mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-20 18:32:17 +00:00
#import fix
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@16503 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
de8c1ba781
commit
cbda1249f8
32 changed files with 144 additions and 71 deletions
|
@ -1,3 +1,9 @@
|
|||
2003-04-21 Serg Stoyan <stoyan@hologr.com>
|
||||
|
||||
* GNUmakefile: Set BUNDLE_INSTALL_DIR to GNUSTEP_SYSTEM_ROOT.
|
||||
|
||||
* .h, .m: Replace #import with #include and add #ifndefs.
|
||||
|
||||
2002-11-27 15:45 probert
|
||||
|
||||
* Mac OS X port using Cocoa
|
||||
|
|
|
@ -21,11 +21,11 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
# Bundle
|
||||
#
|
||||
|
||||
PACKAGE_NAME=PCBundleProj
|
||||
BUNDLE_NAME=PCBundleProj
|
||||
BUNDLE_EXTENSION=.bundle
|
||||
BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter
|
||||
PCBundleProj_PRINCIPAL_CLASS=PCBundleProj
|
||||
PACKAGE_NAME = PCBundleProj
|
||||
BUNDLE_NAME = PCBundleProj
|
||||
BUNDLE_EXTENSION = .bundle
|
||||
BUNDLE_INSTALL_DIR = $(GNUSTEP_SYSTEM_ROOT)/Library/ProjectCenter
|
||||
PCBundleProj_PRINCIPAL_CLASS = PCBundleProj
|
||||
|
||||
|
||||
#
|
||||
|
|
|
@ -24,8 +24,11 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/ProjectCenter.h>
|
||||
#ifndef _PCBUNDLEPROJ_H
|
||||
#define _PCBUNDLEPROJ_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/ProjectCenter.h>
|
||||
|
||||
@interface PCBundleProj : NSObject <ProjectType>
|
||||
{
|
||||
|
@ -47,3 +50,4 @@
|
|||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
|
||||
*/
|
||||
|
||||
#import "PCBundleProj.h"
|
||||
#import "PCBundleProject.h"
|
||||
#include "PCBundleProj.h"
|
||||
#include "PCBundleProject.h"
|
||||
|
||||
@implementation PCBundleProj
|
||||
|
||||
|
|
|
@ -32,9 +32,12 @@
|
|||
get copied to the right place.
|
||||
|
||||
*/
|
||||
|
||||
#ifndef _PCBUNDLEPROJECT_H
|
||||
#define _PCBUNDLEPROJECT_H
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
|
||||
@interface PCBundleProject : PCProject
|
||||
{
|
||||
|
@ -68,3 +71,4 @@
|
|||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -24,12 +24,12 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#import "PCBundleProject.h"
|
||||
#import "PCBundleProj.h"
|
||||
#include "PCBundleProject.h"
|
||||
#include "PCBundleProj.h"
|
||||
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
#import <ProjectCenter/ProjectCenter.h>
|
||||
#include <ProjectCenter/ProjectCenter.h>
|
||||
|
||||
//#define BUNDLE_INSTALL @"$(GNUSTEP_LOCAL_ROOT)/Library/Bundles/"
|
||||
#define BUNDLE_INSTALL @"$(GNUSTEP_INSTALLATION_DIR)/Library/Bundles/"
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2003-04-21 Serg Stoyan <stoyan@hologr.com>
|
||||
|
||||
* GNUmakefile: Set BUNDLE_INSTALL_DIR to GNUSTEP_SYSTEM_ROOT.
|
||||
|
||||
* .h, .m: Replace #import with #include and add #ifndefs.
|
||||
|
||||
2002-11-27 15:45 probert
|
||||
|
||||
* Mac OS X port using Cocoa
|
||||
|
|
|
@ -21,11 +21,11 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
# Bundle
|
||||
#
|
||||
|
||||
PACKAGE_NAME=PCGormProj
|
||||
BUNDLE_NAME=PCGormProj
|
||||
BUNDLE_EXTENSION=.bundle
|
||||
BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter
|
||||
PCGormProj_PRINCIPAL_CLASS=PCGormProj
|
||||
PACKAGE_NAME = PCGormProj
|
||||
BUNDLE_NAME = PCGormProj
|
||||
BUNDLE_EXTENSION = .bundle
|
||||
BUNDLE_INSTALL_DIR = $(GNUSTEP_SYSTEM_ROOT)/Library/ProjectCenter
|
||||
PCGormProj_PRINCIPAL_CLASS = PCGormProj
|
||||
|
||||
|
||||
#
|
||||
|
|
|
@ -22,8 +22,11 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/ProjectCenter.h>
|
||||
#ifndef _PCGORMPROJ_H
|
||||
#define _PCGORMPROJ_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/ProjectCenter.h>
|
||||
|
||||
@interface PCGormProj : NSObject <ProjectType>
|
||||
{
|
||||
|
@ -44,3 +47,5 @@
|
|||
- (PCProject *)openProjectAt:(NSString *)path;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
|
||||
*/
|
||||
|
||||
#import "PCGormProj.h"
|
||||
#import "PCGormProject.h"
|
||||
#include "PCGormProj.h"
|
||||
#include "PCGormProject.h"
|
||||
|
||||
@implementation PCGormProj
|
||||
|
||||
|
|
|
@ -30,9 +30,12 @@
|
|||
get copied to the right place.
|
||||
|
||||
*/
|
||||
|
||||
#ifndef _PCGORMPROJECT_H
|
||||
#define _PCGORMPROJECT_H
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
|
||||
@interface PCGormProject : PCProject
|
||||
{
|
||||
|
@ -78,4 +81,4 @@
|
|||
|
||||
@end
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
@ -22,10 +22,10 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#import "PCGormProject.h"
|
||||
#import "PCGormProj.h"
|
||||
#include "PCGormProject.h"
|
||||
#include "PCGormProj.h"
|
||||
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
@interface PCGormProject (CreateUI)
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
$$
|
||||
/* $FILENAME$ created by $USERNAME$ on $DATE$ */
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
@interface $FILENAMESANSEXTENSION$ : NSObject
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#import <AppKit/AppKit.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
#define APP_NAME @"GNUstep"
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2003-04-21 Serg Stoyan <stoyan@hologr.com>
|
||||
|
||||
* GNUmakefile: Set BUNDLE_INSTALL_DIR to GNUSTEP_SYSTEM_ROOT.
|
||||
|
||||
* .h, .m: Replace #import with #include and add #ifndefs.
|
||||
|
||||
2002-11-27 15:45 probert
|
||||
|
||||
* Mac OS X port using Cocoa
|
||||
|
|
|
@ -21,11 +21,11 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
# Bundle
|
||||
#
|
||||
|
||||
PACKAGE_NAME=PCLibProj
|
||||
BUNDLE_NAME=PCLibProj
|
||||
BUNDLE_EXTENSION=.bundle
|
||||
BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter
|
||||
PCLibProj_PRINCIPAL_CLASS=PCLibProj
|
||||
PACKAGE_NAME = PCLibProj
|
||||
BUNDLE_NAME = PCLibProj
|
||||
BUNDLE_EXTENSION = .bundle
|
||||
BUNDLE_INSTALL_DIR = $(GNUSTEP_SYSTEM_ROOT)/Library/ProjectCenter
|
||||
PCLibProj_PRINCIPAL_CLASS = PCLibProj
|
||||
|
||||
|
||||
#
|
||||
|
|
|
@ -24,8 +24,11 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/ProjectCenter.h>
|
||||
#ifndef _PCLIBPROJ_H
|
||||
#define _PCLIBPROJ_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/ProjectCenter.h>
|
||||
|
||||
@interface PCLibProj : NSObject <ProjectType>
|
||||
{
|
||||
|
@ -46,3 +49,5 @@
|
|||
- (PCProject *)openProjectAt:(NSString *)path;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
|
||||
*/
|
||||
|
||||
#import "PCLibProj.h"
|
||||
#import "PCLibProject.h"
|
||||
#include "PCLibProj.h"
|
||||
#include "PCLibProject.h"
|
||||
|
||||
@implementation PCLibProj
|
||||
|
||||
|
|
|
@ -31,9 +31,12 @@
|
|||
use PCLibProj for doing this. Otherwise needed files don't get copied to the right place.
|
||||
|
||||
*/
|
||||
|
||||
#ifndef _PCLIBPROJECT_H
|
||||
#define _PCLIBPROJECT_H
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
|
||||
@interface PCLibProject : PCProject
|
||||
{
|
||||
|
@ -63,3 +66,5 @@
|
|||
- (void)updateValuesFromProjectDict;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -24,10 +24,10 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#import "PCLibProject.h"
|
||||
#import "PCLibProj.h"
|
||||
#include "PCLibProject.h"
|
||||
#include "PCLibProj.h"
|
||||
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
@interface PCLibProject (CreateUI)
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2003-04-21 Serg Stoyan <stoyan@hologr.com>
|
||||
|
||||
* GNUmakefile: Set BUNDLE_INSTALL_DIR to GNUSTEP_SYSTEM_ROOT.
|
||||
|
||||
* .h, .m: Replace #import with #include and add #ifndefs.
|
||||
|
||||
Sun Feb 2 06:02:50 2003 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
Daniel Luederwald <das_flip@gmx.de>
|
||||
|
||||
|
|
|
@ -23,8 +23,11 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/ProjectCenter.h>
|
||||
#ifndef _PCRENAISSANCEPROJ_H
|
||||
#define _PCRENAISSANCEPROJ_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/ProjectCenter.h>
|
||||
|
||||
@interface PCRenaissanceProj : NSObject <ProjectType>
|
||||
{
|
||||
|
@ -45,3 +48,5 @@
|
|||
- (PCProject *)openProjectAt:(NSString *)path;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -33,8 +33,8 @@
|
|||
|
||||
*/
|
||||
|
||||
#import "PCRenaissanceProj.h"
|
||||
#import "PCRenaissanceProject.h"
|
||||
#include "PCRenaissanceProj.h"
|
||||
#include "PCRenaissanceProject.h"
|
||||
|
||||
@implementation PCRenaissanceProj
|
||||
|
||||
|
|
|
@ -31,9 +31,12 @@
|
|||
get copied to the right place.
|
||||
|
||||
*/
|
||||
|
||||
#ifndef _PCRENAISSANCEPROJECT_H
|
||||
#define _PCRENAISSANCEPROJECT_H
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
|
||||
@interface PCRenaissanceProject : PCProject
|
||||
{
|
||||
|
@ -79,4 +82,4 @@
|
|||
|
||||
@end
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
@ -23,10 +23,10 @@
|
|||
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111 USA.
|
||||
*/
|
||||
|
||||
#import "PCRenaissanceProject.h"
|
||||
#import "PCRenaissanceProj.h"
|
||||
#include "PCRenaissanceProject.h"
|
||||
#include "PCRenaissanceProj.h"
|
||||
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
@interface PCRenaissanceProject (CreateUI)
|
||||
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
2003-04-21 Serg Stoyan <stoyan@hologr.com>
|
||||
|
||||
* GNUmakefile: Set BUNDLE_INSTALL_DIR to GNUSTEP_SYSTEM_ROOT.
|
||||
|
||||
* .h, .m: Replace #import with #include and add #ifndefs.
|
||||
|
||||
2002-11-27 15:45 probert
|
||||
|
||||
* Mac OS X port using Cocoa
|
||||
|
|
|
@ -21,11 +21,11 @@ include $(GNUSTEP_MAKEFILES)/common.make
|
|||
# Bundle
|
||||
#
|
||||
|
||||
PACKAGE_NAME=PCToolProj
|
||||
BUNDLE_NAME=PCToolProj
|
||||
BUNDLE_EXTENSION=.bundle
|
||||
BUNDLE_INSTALL_DIR=$(GNUSTEP_INSTALLATION_DIR)/Library/ProjectCenter
|
||||
PCToolProj_PRINCIPAL_CLASS=PCToolProj
|
||||
PACKAGE_NAME = PCToolProj
|
||||
BUNDLE_NAME = PCToolProj
|
||||
BUNDLE_EXTENSION = .bundle
|
||||
BUNDLE_INSTALL_DIR = $(GNUSTEP_SYSTEM_ROOT)/Library/ProjectCenter
|
||||
PCToolProj_PRINCIPAL_CLASS = PCToolProj
|
||||
|
||||
|
||||
#
|
||||
|
|
|
@ -24,8 +24,11 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/ProjectCenter.h>
|
||||
#ifndef _PCTOOLPROJ_H
|
||||
#define _PCTOOLPROJ_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/ProjectCenter.h>
|
||||
|
||||
@interface PCToolProj : NSObject <ProjectType>
|
||||
{
|
||||
|
@ -46,3 +49,5 @@
|
|||
- (PCProject *)openProjectAt:(NSString *)path;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -31,8 +31,8 @@
|
|||
|
||||
*/
|
||||
|
||||
#import "PCToolProj.h"
|
||||
#import "PCToolProject.h"
|
||||
#include "PCToolProj.h"
|
||||
#include "PCToolProject.h"
|
||||
|
||||
@implementation PCToolProj
|
||||
|
||||
|
|
|
@ -32,9 +32,12 @@
|
|||
get copied to the right place.
|
||||
|
||||
*/
|
||||
|
||||
#ifndef _PCTOOLPROJECT_H
|
||||
#define _PCTOOLPROJECT_H
|
||||
|
||||
#import <AppKit/AppKit.h>
|
||||
#import <ProjectCenter/PCProject.h>
|
||||
#include <AppKit/AppKit.h>
|
||||
#include <ProjectCenter/PCProject.h>
|
||||
|
||||
@interface PCToolProject : PCProject
|
||||
{
|
||||
|
@ -67,3 +70,4 @@
|
|||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -24,10 +24,10 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#import "PCToolProject.h"
|
||||
#import "PCToolProj.h"
|
||||
#include "PCToolProject.h"
|
||||
#include "PCToolProj.h"
|
||||
|
||||
#import <ProjectCenter/PCMakefileFactory.h>
|
||||
#include <ProjectCenter/PCMakefileFactory.h>
|
||||
|
||||
@interface PCToolProject (CreateUI)
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
#import <Foundation/Foundation.h>
|
||||
#include <Foundation/Foundation.h>
|
||||
|
||||
int main(int argc, const char *argv[]) {
|
||||
id pool = [[NSAutoreleasePool alloc] init];
|
||||
|
|
Loading…
Reference in a new issue