Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 20, 2008, 7:49:26 PM (16 years ago)
Author:
rgrieder
Message:

merged input branch into gui test branch (was about time)
svn save (it's still a mess and CMLs haven't been updated)
I'll have to create a special project to create the tolua_bind files for tolua itself anyway..

Location:
code/branches/gui
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/gui

  • code/branches/gui/src/network/Client.cc

    r1534 r1638  
    227227  void Client::processClassid(classid *clid){
    228228    orxonox::Identifier *id;
    229     id=ID(std::string(clid->message));
     229    id=GetIdentifier(std::string(clid->message));
    230230    if(id!=NULL)
    231231      id->setNetworkID(clid->clid);
    232232    COUT(4) << "Client: received and set network id: " << clid->clid << "; classname: " << clid->message << std::endl;
    233     COUT(4) << "id(classid)->getName " << ID((unsigned int)clid->clid)->getName() << std::endl;
     233    COUT(4) << "id(classid)->getName " << GetIdentifier((unsigned int)clid->clid)->getName() << std::endl;
    234234    delete clid;
    235235    return;
Note: See TracChangeset for help on using the changeset viewer.