Changeset 7489 for code/trunk/src/modules/notifications/dispatchers
- Timestamp:
- Sep 24, 2010, 4:01:04 PM (14 years ago)
- Location:
- code/trunk/src/modules/notifications/dispatchers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/notifications/dispatchers/CommandNotification.cc
r7484 r7489 64 64 CommandNotification::~CommandNotification() 65 65 { 66 66 67 67 } 68 68 … … 114 114 Returns a human readable version of the input binding. 115 115 */ 116 //TODO: Move to KeyBinderManager... 116 117 const std::string& CommandNotification::bindingNiceifyer(const std::string& binding) 117 118 { -
code/trunk/src/modules/notifications/dispatchers/CommandNotification.h
r7488 r7489 46 46 @brief 47 47 This class implements a method of displaying a Notification with information to an input command and the key the command is mapped to. 48 The message that is displayed is a string made out uf the concatenation of the preMessage, the key the specified command is mapped to and the postMessage.48 The message that is displayed is a string made out of the concatenation of the preMessage, the key the specified command is mapped to and the postMessage. 49 49 50 50 In use it would like this: … … 120 120 { this->postMessage_ = message; } 121 121 122 const std::string& bindingNiceifyer(const std::string& binding); 122 const std::string& bindingNiceifyer(const std::string& binding); //!< Transforms the input binding into a human readable form. 123 123 124 124 };
Note: See TracChangeset
for help on using the changeset viewer.