Changeset 3327 for code/trunk/src/core/input/KeyDetector.cc
- Timestamp:
- Jul 19, 2009, 5:31:02 PM (15 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/core4 merged: 3269,3271-3275,3278,3285,3290-3294,3310
- Property svn:mergeinfo changed
-
code/trunk/src/core/input/KeyDetector.cc
r3196 r3327 26 26 * 27 27 */ 28 29 /**30 @file31 @brief32 Implementation of the different input handlers.33 */34 28 35 29 #include "KeyDetector.h" … … 68 62 for (std::map<std::string, Button*>::const_iterator it = allButtons_.begin(); it != allButtons_.end(); ++it) 69 63 { 70 it->second->bindingString_ = callbackCommand_ + it->second-> name_;64 it->second->bindingString_ = callbackCommand_ + it->second->groupName_ + "." + it->second->name_; 71 65 it->second->parse(); 72 66 } 73 67 } 74 68 75 void KeyDetector::JoyStick DeviceNumberChanged(unsigned int value)69 void KeyDetector::JoyStickQuantityChanged(const std::vector<JoyStick*>& joyStickList) 76 70 { 77 KeyBinder::JoyStick DeviceNumberChanged(value);71 KeyBinder::JoyStickQuantityChanged(joyStickList); 78 72 setCallbackCommand(callbackCommand_); 79 73 }
Note: See TracChangeset
for help on using the changeset viewer.