mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-23 12:00:52 +00:00
Stop valgrind from complaining about invalid memory access.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@26998 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a6a6257800
commit
67cea92af6
2 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
2008-10-31 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/GSNibCompatibility.m: Define the needed GSIARRAY
|
||||
constants, this helps against valgrind complaining.
|
||||
|
||||
2008-10-31 Fred Kiefer <FredKiefer@gmx.de>
|
||||
|
||||
* Source/NSBitmapImageRep+ICNS.m
|
||||
|
|
|
@ -51,7 +51,15 @@
|
|||
#include <Foundation/NSKeyedArchiver.h>
|
||||
#include "AppKit/AppKit.h"
|
||||
#include <GNUstepBase/GSObjCRuntime.h>
|
||||
|
||||
/*
|
||||
* Setup for inline operation of arrays.
|
||||
*/
|
||||
#define GSI_ARRAY_RETAIN(A, X) RETAIN((X).obj)
|
||||
#define GSI_ARRAY_RELEASE(A, X) RELEASE((X).obj)
|
||||
#define GSI_ARRAY_TYPES GSUNION_OBJ
|
||||
#include <GNUstepBase/GSIArray.h>
|
||||
|
||||
#include <GNUstepGUI/GSNibCompatibility.h>
|
||||
#include <GNUstepGUI/GSInstantiator.h>
|
||||
|
||||
|
|
Loading…
Reference in a new issue