mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-04-26 09:51:07 +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
a1b47c0986
commit
db47735fb5
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>
|
2008-10-31 Fred Kiefer <FredKiefer@gmx.de>
|
||||||
|
|
||||||
* Source/NSBitmapImageRep+ICNS.m
|
* Source/NSBitmapImageRep+ICNS.m
|
||||||
|
|
|
@ -51,7 +51,15 @@
|
||||||
#include <Foundation/NSKeyedArchiver.h>
|
#include <Foundation/NSKeyedArchiver.h>
|
||||||
#include "AppKit/AppKit.h"
|
#include "AppKit/AppKit.h"
|
||||||
#include <GNUstepBase/GSObjCRuntime.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 <GNUstepBase/GSIArray.h>
|
||||||
|
|
||||||
#include <GNUstepGUI/GSNibCompatibility.h>
|
#include <GNUstepGUI/GSNibCompatibility.h>
|
||||||
#include <GNUstepGUI/GSInstantiator.h>
|
#include <GNUstepGUI/GSInstantiator.h>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue