Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 19, 2009, 5:31:02 PM (15 years ago)
Author:
rgrieder
Message:

Merged all remaining revisions from core4 back to the trunk.

Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/core/input/KeyDetector.cc

    r3196 r3327  
    2626 *
    2727 */
    28 
    29 /**
    30 @file
    31 @brief
    32     Implementation of the different input handlers.
    33 */
    3428
    3529#include "KeyDetector.h"
     
    6862        for (std::map<std::string, Button*>::const_iterator it = allButtons_.begin(); it != allButtons_.end(); ++it)
    6963        {
    70             it->second->bindingString_ = callbackCommand_ + it->second->name_;
     64            it->second->bindingString_ = callbackCommand_ + it->second->groupName_ + "." + it->second->name_;
    7165            it->second->parse();
    7266        }
    7367    }
    7468
    75     void KeyDetector::JoyStickDeviceNumberChanged(unsigned int value)
     69    void KeyDetector::JoyStickQuantityChanged(const std::vector<JoyStick*>& joyStickList)
    7670    {
    77         KeyBinder::JoyStickDeviceNumberChanged(value);
     71        KeyBinder::JoyStickQuantityChanged(joyStickList);
    7872        setCallbackCommand(callbackCommand_);
    7973    }
Note: See TracChangeset for help on using the changeset viewer.