Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 26, 2008, 7:17:08 PM (16 years ago)
Author:
dafrick
Message:

Fixed a stupid bug…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/questsystem3/src/orxonox/overlays/notifications/NotificationQueue.cc

    r2285 r2287  
    3737namespace orxonox {
    3838
    39     NotificationQueue* NotificationQueue::queue_s;
     39    NotificationQueue* NotificationQueue::queue_s = 0;
    4040   
    4141    CreateFactory(NotificationQueue);
     
    7070    {
    7171        NotificationManager::tick(dt);
     72       
     73        update();
    7274    }
    7375   
     
    8486    void NotificationQueue::setQueueText(const std::string & text)
    8587    {
    86         COUT(3) << text << std::endl;
    8788        this->queueText_ = text;
    8889    }
     
    9091    void NotificationQueue::update(void)
    9192    {
    92         //TDO UTF string
    9393        this->text_->setCaption(queueText_);
    9494    }
Note: See TracChangeset for help on using the changeset viewer.