Changeset 7978 for code/branches/usability/src/modules/questsystem
- Timestamp:
- Feb 27, 2011, 3:11:42 AM (14 years ago)
- Location:
- code/branches/usability/src/modules/questsystem/effects
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/usability/src/modules/questsystem/effects/AddQuestHint.cc
r7552 r7978 86 86 bool AddQuestHint::setHintId(const std::string & id) 87 87 { 88 if(id .compare(BLANKSTRING) == 0)88 if(id == "") 89 89 { 90 90 COUT(2) << "Invalid id. QuestItem id {" << id << "} could not be set." << std::endl; -
code/branches/usability/src/modules/questsystem/effects/ChangeQuestStatus.cc
r7456 r7978 81 81 bool ChangeQuestStatus::setQuestId(const std::string & id) 82 82 { 83 if(id .compare(BLANKSTRING) == 0)83 if(id == "") 84 84 { 85 85 COUT(2) << "Invalid id. QuestItem id {" << id << "} could not be set." << std::endl;
Note: See TracChangeset
for help on using the changeset viewer.