Made NSString +constantStringClass return the constant string class, rather than whatever configure guessed the constant string class was.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@29405 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
David Chisnall 2010-01-25 16:01:10 +00:00
parent 7f21dcbbea
commit e06564cf1b

View file

@ -673,7 +673,7 @@ handle_printf_atsign (FILE *stream,
*/
+ (Class) constantStringClass
{
return [NXConstantString class];
return [@"" class];
}
/**