mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOControl/EODebug.m
ivar_getTypeEncoding returns const char * git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@36294 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
a025d6732f
commit
ddaa8accaf
2 changed files with 3 additions and 1 deletions
|
@ -3,6 +3,8 @@
|
|||
add -std=gnu89 to allow compile with clang and -O0
|
||||
* EOControl/EOPrivate.h
|
||||
do not access the isa directly, use object_getClass
|
||||
* EOControl/EODebug.m
|
||||
ivar_getTypeEncoding returns const char *
|
||||
|
||||
2013-03-02: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
* Apps/EOModelEditor/EOMEDocument.m
|
||||
|
|
|
@ -325,7 +325,7 @@ DumpIVar(id object, Ivar ivar, int deep)
|
|||
if (ivar && object && deep >= 0)
|
||||
{
|
||||
void *pValue = ((void*)object) + ivar_getOffset(ivar);
|
||||
char *type = ivar_getTypeEncoding(ivar);
|
||||
const char *type = ivar_getTypeEncoding(ivar);
|
||||
NSString *pType = TypeToNSString(type);
|
||||
NSString *pIVar = IVarInString(type, pValue);
|
||||
|
||||
|
|
Loading…
Reference in a new issue