mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 10:01:14 +00:00
* Source/NSWindow.m: Correct compilation error.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@27792 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
6312db17ff
commit
d456de1826
2 changed files with 14 additions and 10 deletions
|
@ -1,3 +1,7 @@
|
|||
2009-02-04 17:51-EST Gregory John Casamento <greg_casamento@yahoo.com>
|
||||
|
||||
* Source/NSWindow.m: Correct compilation error.
|
||||
|
||||
2009-02-04 Richard Frith-Macdonald <rfm@gnu.org>
|
||||
|
||||
* Source/NSApplication.m: Don't attempt to set app icon until
|
||||
|
|
|
@ -82,6 +82,16 @@
|
|||
#include "GSWindowDecorationView.h"
|
||||
#include "NSToolbarFrameworkPrivate.h"
|
||||
|
||||
#define GSI_ARRAY_TYPES 0
|
||||
#define GSI_ARRAY_TYPE NSWindow *
|
||||
#define GSI_ARRAY_NO_RELEASE 1
|
||||
#define GSI_ARRAY_NO_RETAIN 1
|
||||
|
||||
#ifdef GSIArray
|
||||
#undef GSIArray
|
||||
#endif
|
||||
#include <GNUstepBase/GSIArray.h>
|
||||
|
||||
static GSToolTips *toolTipVisible = nil;
|
||||
static id<GSWindowDecorator> windowDecorator = nil;
|
||||
|
||||
|
@ -150,16 +160,6 @@ BOOL GSViewAcceptsDrag(NSView *v, id<NSDraggingInfo> dragInfo);
|
|||
|
||||
static NSArray *modes = nil;
|
||||
|
||||
#define GSI_ARRAY_TYPES 0
|
||||
#define GSI_ARRAY_TYPE NSWindow *
|
||||
#define GSI_ARRAY_NO_RELEASE 1
|
||||
#define GSI_ARRAY_NO_RETAIN 1
|
||||
|
||||
#ifdef GSIArray
|
||||
#undef GSIArray
|
||||
#endif
|
||||
#include <GNUstepBase/GSIArray.h>
|
||||
|
||||
/* Array of windows we might need to handle autodisplay for (in practice
|
||||
a list of windows that are, wrt. -gui, on-screen). */
|
||||
static GSIArray_t autodisplayedWindows;
|
||||
|
|
Loading…
Reference in a new issue