Add more missing imports.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@30043 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Fred Kiefer 2010-03-26 07:51:34 +00:00
parent 65c8dbe1fd
commit 3a58a7e30b
4 changed files with 58 additions and 50 deletions

View file

@ -1,8 +1,14 @@
2010-03-25 Fred Kiefer <FredKiefer@gmx.de>
* Source/art/ftfont.m,
* Source/art/ftfont-old.m,
* Source/xlib/XGGState.m: Add more missing imports.
2010-03-25 Riccardo Mottola <rmottola@users.sf.net> 2010-03-25 Riccardo Mottola <rmottola@users.sf.net>
* Source/gsc/GSGState.m: import NSValue, include -> import * Source/gsc/GSGState.m: import NSValue, include -> import
* Source/xlib/XGGState.m: added missing imports * Source/xlib/XGGState.m: added missing imports
2010-03-24 Doug Simons <doug.simons@testplant.com> 2010-03-24 Doug Simons <doug.simons@testplant.com>
* Source/winlib/WIN32FontInfo.m: Include NSDebug.h for * Source/winlib/WIN32FontInfo.m: Include NSDebug.h for
@ -32,9 +38,9 @@
and WM_SYSKEYUP messages - these are delivered instead and WM_SYSKEYUP messages - these are delivered instead
of normal WM_KEYDOWN and WM_KEYUP messages when the of normal WM_KEYDOWN and WM_KEYUP messages when the
ALT key is presesd. (and also F10). ALT key is presesd. (and also F10).
This fixes NSAlternateKeyMask not being set. This fixes NSAlternateKeyMask not being set.
2010-03-13 Eric Wasylishen <ewasylishen@gmail.com> 2010-03-13 Eric Wasylishen <ewasylishen@gmail.com>
* Source/win32/w32_GLcontext.m: Set the WS_DISABLED flag * Source/win32/w32_GLcontext.m: Set the WS_DISABLED flag

View file

@ -24,30 +24,31 @@
#include <math.h> #include <math.h>
#include <Foundation/NSObject.h> #import <Foundation/NSObject.h>
#include <Foundation/NSArray.h> #import <Foundation/NSArray.h>
#include <Foundation/NSSet.h> #import <Foundation/NSSet.h>
#include <Foundation/NSDictionary.h> #import <Foundation/NSDictionary.h>
#include <Foundation/NSValue.h> #import <Foundation/NSValue.h>
#include <Foundation/NSPathUtilities.h> #import <Foundation/NSPathUtilities.h>
#include <Foundation/NSFileManager.h> #import <Foundation/NSFileManager.h>
#include <Foundation/NSUserDefaults.h> #import <Foundation/NSUserDefaults.h>
#include <Foundation/NSBundle.h> #import <Foundation/NSBundle.h>
#include <Foundation/NSDebug.h> #import <Foundation/NSDebug.h>
#include <GNUstepBase/Unicode.h> #import <Foundation/NSGeometry.h>
#import <Foundation/NSString.h>
#import <GNUstepBase/Unicode.h>
#include <GNUstepGUI/GSFontInfo.h> #import <GNUstepGUI/GSFontInfo.h>
#include <AppKit/NSAffineTransform.h> #import <AppKit/NSAffineTransform.h>
#include <AppKit/NSBezierPath.h> #import <AppKit/NSBezierPath.h>
//#include "gsc/GSContext.h" #import "gsc/GSGState.h"
#include "gsc/GSGState.h"
#include "ftfont.h" #import "ftfont.h"
#include "FTFontEnumerator.h" #import "FTFontEnumerator.h"
#include "FTFaceInfo.h" #import "FTFaceInfo.h"
#include "blit.h" #import "blit.h"
#define DI (*di) #define DI (*di)

View file

@ -28,37 +28,37 @@
#if (FREETYPE_MAJOR==2) && ((FREETYPE_MINOR<1) || ((FREETYPE_MINOR==1) && (FREETYPE_PATCH<8))) #if (FREETYPE_MAJOR==2) && ((FREETYPE_MINOR<1) || ((FREETYPE_MINOR==1) && (FREETYPE_PATCH<8)))
#include "ftfont-old.m" #import "ftfont-old.m"
#else #else
#include <math.h> #include <math.h>
#include <Foundation/NSObject.h> #import <Foundation/NSObject.h>
#include <Foundation/NSArray.h> #import <Foundation/NSArray.h>
#include <Foundation/NSSet.h> #import <Foundation/NSCharacterSet.h>
#include <Foundation/NSDictionary.h> #import <Foundation/NSSet.h>
#include <Foundation/NSValue.h> #import <Foundation/NSDictionary.h>
#include <Foundation/NSPathUtilities.h> #import <Foundation/NSValue.h>
#include <Foundation/NSFileManager.h> #import <Foundation/NSPathUtilities.h>
#include <Foundation/NSUserDefaults.h> #import <Foundation/NSFileManager.h>
#include <Foundation/NSBundle.h> #import <Foundation/NSUserDefaults.h>
#include <Foundation/NSDebug.h> #import <Foundation/NSBundle.h>
#include <GNUstepBase/Unicode.h> #import <Foundation/NSDebug.h>
#import <GNUstepBase/Unicode.h>
#include <GNUstepGUI/GSFontInfo.h> #import <GNUstepGUI/GSFontInfo.h>
#include <AppKit/NSAffineTransform.h> #import <AppKit/NSAffineTransform.h>
#include <AppKit/NSBezierPath.h> #import <AppKit/NSBezierPath.h>
//#include "gsc/GSContext.h" #import "gsc/GSGState.h"
#include "gsc/GSGState.h"
#include "ftfont.h" #import "ftfont.h"
#include "FTFontEnumerator.h" #import "FTFontEnumerator.h"
#include "FTFaceInfo.h" #import "FTFaceInfo.h"
#include "blit.h" #import "blit.h"
#define DI (*di) #define DI (*di)

View file

@ -24,21 +24,22 @@
Boston, MA 02110-1301, USA. Boston, MA 02110-1301, USA.
*/ */
#include "config.h" #import "config.h"
#import <Foundation/NSObjCRuntime.h> #import <Foundation/NSObjCRuntime.h>
#import <Foundation/NSUserDefaults.h> #import <Foundation/NSUserDefaults.h>
#import <Foundation/NSValue.h> #import <Foundation/NSValue.h>
#import <Foundation/NSDebug.h> #import <Foundation/NSDebug.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSException.h> #import <Foundation/NSException.h>
#import <AppKit/NSBezierPath.h> #import <AppKit/NSBezierPath.h>
#import <AppKit/NSFont.h> #import <AppKit/NSFont.h>
#import <AppKit/NSGraphics.h> #import <AppKit/NSGraphics.h>
#include "xlib/XGGeometry.h" #import "xlib/XGGeometry.h"
#include "xlib/XGContext.h" #import "xlib/XGContext.h"
#include "xlib/XGGState.h" #import "xlib/XGGState.h"
#include "xlib/XGContext.h" #import "xlib/XGContext.h"
#include "xlib/XGPrivate.h" #import "xlib/XGPrivate.h"
#include "math.h" #include "math.h"
#define XDPY (((RContext *)context)->dpy) #define XDPY (((RContext *)context)->dpy)