Changeset 9866 in orxonox.OLD for branches/new_class_id/src/lib
- Timestamp:
- Oct 2, 2006, 6:27:39 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/shell/shell_input.cc
r9865 r9866 241 241 if (chars > 0) 242 242 { 243 printf("move cursor %d to the right\n", chars);243 PRINTF(5)("move cursor %d to the right\n", chars); 244 244 if (chars >= (int) this->inputLineEnd.size()) 245 245 chars = inputLineEnd.size(); … … 250 250 { 251 251 chars = -chars; 252 printf("move cursor %d to the left\n", chars);252 PRINTF(5)("move cursor %d to the left\n", chars); 253 253 254 254 if (chars >= (int) this->inputLineBegin.size()) … … 265 265 void ShellInput::help(const std::string& className, const std::string& functionName) 266 266 { 267 printf("%s::%s\n", className.c_str(), functionName.c_str());268 269 267 if (className.empty()) 270 268 {
Note: See TracChangeset
for help on using the changeset viewer.