Changed setName method of Objective-C wrapper for body to do nothing (since

Body::setName is now private.)
ver1_6_1
Chris Laurel 2008-07-19 21:51:28 +00:00
parent e7645a774f
commit bd334ed4e5
1 changed files with 2 additions and 1 deletions

View File

@ -85,7 +85,8 @@
}
-(void)setName:(NSString*)s
{
[self body]->setName([s stdString]);
// Body::setName method is now private
//[self body]->setName([s stdString]);
}
-(void)setMass:(NSNumber*)m
{