mirror of
https://github.com/gnustep/libs-back.git
synced 2025-02-23 20:01:22 +00:00
added missing imports
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/back/trunk@30451 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f165cc7543
commit
1d0aa595c9
3 changed files with 12 additions and 4 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
2010-05-25 Riccardo Mottola <rmottola@users.sf.net>
|
||||||
|
|
||||||
|
* Source/x11/XGDragView.m
|
||||||
|
* Source/gsc/GSGState.m
|
||||||
|
Added missing imports.
|
||||||
|
|
||||||
2010-05-16 17:39-EDT Gregory John Casamento <greg.casamento@gmail.com>
|
2010-05-16 17:39-EDT Gregory John Casamento <greg.casamento@gmail.com>
|
||||||
|
|
||||||
* Headers/win32/WIN32Server.h
|
* Headers/win32/WIN32Server.h
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#import <Foundation/NSObjCRuntime.h>
|
#import <Foundation/NSObjCRuntime.h>
|
||||||
#import <Foundation/NSValue.h>
|
#import <Foundation/NSValue.h>
|
||||||
|
#import <Foundation/NSDictionary.h>
|
||||||
#import <AppKit/NSAffineTransform.h>
|
#import <AppKit/NSAffineTransform.h>
|
||||||
#import <AppKit/NSBezierPath.h>
|
#import <AppKit/NSBezierPath.h>
|
||||||
#import <AppKit/NSColor.h>
|
#import <AppKit/NSColor.h>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/*
|
/*
|
||||||
XGDragView - Drag and Drop code for X11 backends.
|
XGDragView - Drag and Drop code for X11 backends.
|
||||||
|
|
||||||
Copyright (C) 1998,1999,2001 Free Software Foundation, Inc.
|
Copyright (C) 1998-2010 Free Software Foundation, Inc.
|
||||||
|
|
||||||
Created by: Wim Oudshoorn <woudshoo@xs4all.nl>
|
Created by: Wim Oudshoorn <woudshoo@xs4all.nl>
|
||||||
Date: Nov 2001
|
Date: Nov 2001
|
||||||
|
@ -28,6 +28,10 @@
|
||||||
Boston, MA 02110-1301, USA.
|
Boston, MA 02110-1301, USA.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <Foundation/NSDebug.h>
|
||||||
|
#include <Foundation/NSThread.h>
|
||||||
|
#include <Foundation/NSSet.h>
|
||||||
|
|
||||||
#include <AppKit/NSApplication.h>
|
#include <AppKit/NSApplication.h>
|
||||||
#include <AppKit/NSCursor.h>
|
#include <AppKit/NSCursor.h>
|
||||||
#include <AppKit/NSGraphics.h>
|
#include <AppKit/NSGraphics.h>
|
||||||
|
@ -36,9 +40,6 @@
|
||||||
#include <AppKit/NSView.h>
|
#include <AppKit/NSView.h>
|
||||||
#include <AppKit/NSWindow.h>
|
#include <AppKit/NSWindow.h>
|
||||||
|
|
||||||
#include <Foundation/NSDebug.h>
|
|
||||||
#include <Foundation/NSThread.h>
|
|
||||||
|
|
||||||
#include "x11/XGServer.h"
|
#include "x11/XGServer.h"
|
||||||
#include "x11/XGServerWindow.h"
|
#include "x11/XGServerWindow.h"
|
||||||
#include "x11/XGDragView.h"
|
#include "x11/XGDragView.h"
|
||||||
|
|
Loading…
Reference in a new issue