Corrected the define name for IB_EXTERN

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@20465 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2004-12-18 18:24:28 +00:00
parent c08135357b
commit 0db0944bef
7 changed files with 39 additions and 30 deletions

View file

@ -1,3 +1,12 @@
2004-12-18 13:24 Gregory John Casamento <greg_casamento@yahoo.com>
* GormLib/IBApplicationAdditions.h
* GormLib/IBConnectors.h
* GormLib/IBDocuments.h
* GormLib/IBEditors.h
* GormLib/IBPalette.h
* GormLib/IBSystem.h: Changed IB_EXPORT to IB_EXTERN.
2004-12-18 10:05 Gregory John Casamento <greg_casamento@yahoo.com>
* GormDocument.m:

View file

@ -29,10 +29,10 @@
#include <InterfaceBuilder/IBEditors.h>
#include <InterfaceBuilder/IBSystem.h>
IB_EXPORT NSString *IBWillBeginTestingInterfaceNotification;
IB_EXPORT NSString *IBDidBeginTestingInterfaceNotification;
IB_EXPORT NSString *IBWillEndTestingInterfaceNotification;
IB_EXPORT NSString *IBDidEndTestingInterfaceNotification;
IB_EXTERN NSString *IBWillBeginTestingInterfaceNotification;
IB_EXTERN NSString *IBDidBeginTestingInterfaceNotification;
IB_EXTERN NSString *IBWillEndTestingInterfaceNotification;
IB_EXTERN NSString *IBDidEndTestingInterfaceNotification;
@protocol IB <NSObject>
- (id<IBDocuments>) activeDocument;

View file

@ -33,10 +33,10 @@
// forward declarations
@class NSString;
IB_EXPORT NSString *IBWillAddConnectorNotification;
IB_EXPORT NSString *IBDidAddConnectorNotification;
IB_EXPORT NSString *IBWillRemoveConnectorNotification;
IB_EXPORT NSString *IBDidRemoveConnectorNotification;
IB_EXTERN NSString *IBWillAddConnectorNotification;
IB_EXTERN NSString *IBDidAddConnectorNotification;
IB_EXTERN NSString *IBWillRemoveConnectorNotification;
IB_EXTERN NSString *IBDidRemoveConnectorNotification;
/*
* Connector objects are used to record connections between nib objects.

View file

@ -30,10 +30,10 @@
#include <InterfaceBuilder/IBConnectors.h>
#include <InterfaceBuilder/IBSystem.h>
IB_EXPORT NSString *IBDidOpenDocumentNotification;
IB_EXPORT NSString *IBWillSaveDocumentNotification;
IB_EXPORT NSString *IBDidSaveDocumentNotification;
IB_EXPORT NSString *IBWillCloseDocumentNotification;
IB_EXTERN NSString *IBDidOpenDocumentNotification;
IB_EXTERN NSString *IBWillSaveDocumentNotification;
IB_EXTERN NSString *IBDidSaveDocumentNotification;
IB_EXTERN NSString *IBWillCloseDocumentNotification;
@protocol IBDocuments <NSObject>
- (void) addConnector: (id<IBConnectors>)aConnector;

View file

@ -36,10 +36,10 @@
/*
* Notification for editing and inspecting the objects etc.
*/
IB_EXPORT NSString *IBAttributesChangedNotification;
IB_EXPORT NSString *IBInspectorDidModifyObjectNotification;
IB_EXPORT NSString *IBSelectionChangedNotification;
IB_EXPORT NSString *IBClassNameChangedNotification;
IB_EXTERN NSString *IBAttributesChangedNotification;
IB_EXTERN NSString *IBInspectorDidModifyObjectNotification;
IB_EXTERN NSString *IBSelectionChangedNotification;
IB_EXTERN NSString *IBClassNameChangedNotification;
/**
* The IBSelectionOwners protocol defines the methods that a selection owner

View file

@ -1,4 +1,4 @@
/* IBInspector.h
/* IBPalette.h
*
* Copyright (C) 2003 Free Software Foundation, Inc.
*
@ -41,22 +41,22 @@
* window into another window in Gorm (or, in the case of IBWindowPboardType
* onto the desktop).
*/
IB_EXPORT NSString *IBCellPboardType;
IB_EXPORT NSString *IBMenuPboardType;
IB_EXPORT NSString *IBMenuCellPboardType;
IB_EXPORT NSString *IBObjectPboardType;
IB_EXPORT NSString *IBViewPboardType;
IB_EXPORT NSString *IBWindowPboardType;
IB_EXPORT NSString *IBFormatterPboardType;
IB_EXTERN NSString *IBCellPboardType;
IB_EXTERN NSString *IBMenuPboardType;
IB_EXTERN NSString *IBMenuCellPboardType;
IB_EXTERN NSString *IBObjectPboardType;
IB_EXTERN NSString *IBViewPboardType;
IB_EXTERN NSString *IBWindowPboardType;
IB_EXTERN NSString *IBFormatterPboardType;
/*
* Pasteboard types used for DnD from images or sounds tab
* to views or inspector's textfield onto the desktop).
* NOTE: These are specific to Gorm...
*/
IB_EXPORT NSString *GormImagePboardType;
IB_EXPORT NSString *GormSoundPboardType;
IB_EXPORT NSString *GormLinkPboardType;
IB_EXTERN NSString *GormImagePboardType;
IB_EXTERN NSString *GormSoundPboardType;
IB_EXTERN NSString *GormLinkPboardType;
@interface IBPalette : NSObject
{

View file

@ -28,14 +28,14 @@
#ifdef GNUSTEP_WITH_DLL
#if BUILD_libGormLib_DLL
# define IB_EXPORT __declspec(dllexport)
# define IB_EXTERN __declspec(dllexport)
#else
# define IB_EXPORT extern __declspec(dllimport)
# define IB_EXTERN extern __declspec(dllimport)
#endif
#else /* GNUSTEP_WITH[OUT]_DLL */
# define IB_EXPORT extern
# define IB_EXTERN extern
#endif