mirror of
https://github.com/gnustep/apps-projectcenter.git
synced 2025-02-21 19:01:18 +00:00
added needed #ifndefs
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/projectcenter/trunk@16496 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f5c28c6c0e
commit
173daea3a9
7 changed files with 31 additions and 3 deletions
|
@ -4,7 +4,8 @@
|
|||
|
||||
* ProjectCenter_main.m (createMenu()): Set title of app menu to "PC".
|
||||
|
||||
* Replace all occurrences of #import with #include.
|
||||
* Replace all occurrences of #import with #include and make needed
|
||||
#ifndefs
|
||||
|
||||
2003-01-25 Daniel Luederwald <das_flip@gmx.de>
|
||||
|
||||
|
|
|
@ -24,6 +24,9 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#ifndef _PCAPPCONTROLLER_MENUHANDLING_H
|
||||
#define _PCAPPCONTROLLER_MENUHANDLING_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
#include "PCAppController.h"
|
||||
|
||||
|
@ -67,5 +70,4 @@
|
|||
|
||||
@end
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
|
|
|
@ -24,6 +24,9 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#ifndef _PCAPPCONTROLLER_H
|
||||
#define _PCAPPCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
#include "PCPrefController.h"
|
||||
|
@ -111,3 +114,5 @@
|
|||
// Returns YES upon successfully registering a new projecttype.
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -24,6 +24,9 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#ifndef _PCFINDCONTROLLER_H
|
||||
#define _PCFINDCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
@interface PCFindController : NSObject
|
||||
|
@ -32,3 +35,5 @@
|
|||
}
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -24,6 +24,9 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#ifndef _PCINFOCONTROLLER_H
|
||||
#define _PCINFOCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
@interface PCInfoController : NSObject
|
||||
|
@ -38,3 +41,5 @@
|
|||
- (void)showInfoWindow:(id)sender;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -24,6 +24,9 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#ifndef _PCLOGCONTROLLER_H
|
||||
#define _PCLOGCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
#define INFORMATION 0
|
||||
|
@ -37,3 +40,5 @@
|
|||
- (void)logMessage:(NSString *)message tag:(int)tag;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
|
@ -24,6 +24,9 @@
|
|||
$Id$
|
||||
*/
|
||||
|
||||
#ifndef _PCMENUCONTROLLER_H
|
||||
#define _PCMENUCONTROLLER_H
|
||||
|
||||
#include <AppKit/AppKit.h>
|
||||
|
||||
@class PCProjectManager;
|
||||
|
@ -90,3 +93,5 @@
|
|||
- (void)editorDidBecomeKey:(NSNotification *)aNotification;
|
||||
|
||||
@end
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue