Changeset 2287 for code/branches/questsystem3/src/orxonox/overlays/notifications/NotificationQueue.cc
- Timestamp:
- Nov 26, 2008, 7:17:08 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/questsystem3/src/orxonox/overlays/notifications/NotificationQueue.cc
r2285 r2287 37 37 namespace orxonox { 38 38 39 NotificationQueue* NotificationQueue::queue_s ;39 NotificationQueue* NotificationQueue::queue_s = 0; 40 40 41 41 CreateFactory(NotificationQueue); … … 70 70 { 71 71 NotificationManager::tick(dt); 72 73 update(); 72 74 } 73 75 … … 84 86 void NotificationQueue::setQueueText(const std::string & text) 85 87 { 86 COUT(3) << text << std::endl;87 88 this->queueText_ = text; 88 89 } … … 90 91 void NotificationQueue::update(void) 91 92 { 92 //TDO UTF string93 93 this->text_->setCaption(queueText_); 94 94 }
Note: See TracChangeset
for help on using the changeset viewer.