Changeset 1059 for code/trunk/src/core
- Timestamp:
- Apr 14, 2008, 2:19:42 PM (17 years ago)
- Location:
- code/trunk/src/core
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/core/CommandExecutor.cc
r1056 r1059 196 196 // return KeybindMode::onPress; 197 197 } 198 // FIXME: Had to insert a return statement 199 return (KeybindMode)0; 198 200 } 199 201 -
code/trunk/src/core/Identifier.cc
r1056 r1059 155 155 bool Identifier::isA(const Identifier* identifier) const 156 156 { 157 return (identifier == this || (this->parents_.find(identifier) != this-> children_->end()));157 return (identifier == this || (this->parents_.find(identifier) != this->parents_.end())); 158 158 } 159 159 -
code/trunk/src/core/XMLPort.h
r1057 r1059 96 96 class _CoreExport XMLPortParamContainer 97 97 { 98 public: 98 99 enum ParseResult 99 100 {
Note: See TracChangeset
for help on using the changeset viewer.