mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 07:00:46 +00:00
Fix bug #12296
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@20904 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b5dc5a7008
commit
52ff2b181d
3 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2005-03-13 Richard Frith-Macdoanld <rfm@gnu.org>
|
||||
|
||||
* Headers/AppKit/NSGraphics.h: Fix prototype for stricter compiler.
|
||||
* Source/Functions.m: ditto
|
||||
Deal with bug #12296
|
||||
|
||||
2005-03-10 Nicola Pero <n.pero@mi.flashnet.it>
|
||||
|
||||
* Headers/AppKit/AppKitDefines.h (GS_EXPORT): Use extern, not
|
||||
|
|
|
@ -248,7 +248,7 @@ APPKIT_EXPORT void NSDrawWindowBackground(NSRect aRect);
|
|||
|
||||
// Context information
|
||||
APPKIT_EXPORT void NSCountWindowsForContext(int context, int *count);
|
||||
APPKIT_EXPORT void NSWindowListForContext(int context, int size, int list[][]);
|
||||
APPKIT_EXPORT void NSWindowListForContext(int context, int size, int **list);
|
||||
APPKIT_EXPORT int NSGetWindowServerMemory(int context, int *virtualMemory,
|
||||
int *windowBackingMemory,
|
||||
NSString **windowDumpStream);
|
||||
|
|
|
@ -825,7 +825,7 @@ NSShowSystemInfoPanel(NSDictionary *options)
|
|||
}
|
||||
|
||||
void
|
||||
NSWindowListForContext(int context, int size, int list[][])
|
||||
NSWindowListForContext(int context, int size, int **list)
|
||||
{
|
||||
// TODO
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue