Changeset 6502 for code/trunk/src/modules/questsystem/notifications
- Timestamp:
- Mar 11, 2010, 11:34:20 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/modules/questsystem/notifications/NotificationQueue.cc
r6417 r6502 139 139 { 140 140 this->removeContainer(*it); 141 this->scroll(Vector2(0.0 ,-(1.1*this->getFontSize())));141 this->scroll(Vector2(0.0f,-(1.1f*this->getFontSize()))); 142 142 it = this->containers_.begin(); //TODO: Needed? 143 143 } 144 144 145 this->tickTime_ = 0.0 ; //!< Reset time counter.145 this->tickTime_ = 0.0f; //!< Reset time counter. 146 146 } 147 147 } … … 193 193 it = this->containers_.begin(); 194 194 this->removeContainer(*it); 195 this->scroll(Vector2(0.0 ,-(1.1*this->getFontSize())));195 this->scroll(Vector2(0.0f,-(1.1f*this->getFontSize()))); 196 196 } 197 197 … … 375 375 { 376 376 (*it)->overlay->setPosition(this->getPosition()); 377 (*it)->overlay->scroll(Vector2(0.0 ,(1.1*this->getFontSize())*counter));377 (*it)->overlay->scroll(Vector2(0.0f,(1.1f*this->getFontSize())*counter)); 378 378 counter++; 379 379 } … … 407 407 this->size_= this->size_+1; 408 408 409 container->overlay->scroll(Vector2(0.0 ,(1.1*this->getFontSize())*(this->getSize()-1)));409 container->overlay->scroll(Vector2(0.0f,(1.1f*this->getFontSize())*(this->getSize()-1))); 410 410 } 411 411
Note: See TracChangeset
for help on using the changeset viewer.