Changeset 11083 for code/trunk/src/libraries/core
- Timestamp:
- Jan 21, 2016, 1:59:04 PM (9 years ago)
- Location:
- code/trunk/src/libraries/core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/core/GUIManager.cc
r11071 r11083 104 104 #include "util/OrxAssert.h" 105 105 #include "util/output/BaseWriter.h" 106 #include "util/StringUtils.h" 107 #include "util/SubString.h" 106 108 #include "config/ConfigValueIncludes.h" 107 109 #include "Core.h" -
code/trunk/src/libraries/core/class/SubclassIdentifier.h
r11071 r11083 92 92 public: 93 93 /// Constructor: Automaticaly assigns the Identifier of the given class. 94 SubclassIdentifier() 94 SubclassIdentifier() : identifier_(nullptr) 95 95 { 96 96 this->identifier_ = ClassIdentifier<T>::getIdentifier(); … … 98 98 99 99 /// Constructor: Assigns the given Identifier. 100 SubclassIdentifier(Identifier* identifier) 100 SubclassIdentifier(Identifier* identifier) : identifier_(nullptr) 101 101 { 102 102 this->operator=(identifier); … … 105 105 /// Copyconstructor: Assigns the identifier of another SubclassIdentifier. 106 106 template <class O> 107 SubclassIdentifier(const SubclassIdentifier<O>& identifier) 107 SubclassIdentifier(const SubclassIdentifier<O>& identifier) : identifier_(nullptr) 108 108 { 109 109 this->operator=(identifier.getIdentifier()); -
code/trunk/src/libraries/core/input/KeyBinder.cc
r11071 r11083 67 67 for (unsigned int i = 0; i < KeyCode::numberOfKeys; i++) 68 68 { 69 const std::string &keyname = KeyCode::ByString[i];69 const std::string keyname = KeyCode::ByString[i]; 70 70 if (!keyname.empty()) 71 71 keys_[i].name_ = std::string("Key") + keyname;
Note: See TracChangeset
for help on using the changeset viewer.