mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-04-22 12:55:44 +00:00
* EOControl/EODebug.m
do not use redundant stringWithString git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@36229 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
8e7b0621cb
commit
b2b2b838f3
2 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
2013-03-01: Sebastian Reitenbach <sebastia@l00-bugdead-prods.de>
|
||||
* EOControl/EODebug.m
|
||||
do not use redundant stringWithString
|
||||
|
||||
2012-08-10 German A. Arias <german@xelalug.org>
|
||||
|
||||
* EOInterface/GNUmakefile:
|
||||
|
|
|
@ -238,7 +238,7 @@ IVarInString(const char* _type, void* _value)
|
|||
}
|
||||
}
|
||||
else
|
||||
return [NSString stringWithString: @"NULL type or NULL pValue"];
|
||||
return @"NULL type or NULL pValue";
|
||||
}
|
||||
|
||||
static NSString *
|
||||
|
@ -316,7 +316,7 @@ TypeToNSString(const char* _type)
|
|||
}
|
||||
}
|
||||
else
|
||||
return [NSString stringWithString: @"NULL type"];
|
||||
return @"NULL type";
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue