Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 19, 2009, 11:57:28 PM (15 years ago)
Author:
rgrieder
Message:

In quest system:

  • Build fix (non-void function must return a value)
  • Removed some header files to reduce compile time
  • svn:eol-style "native" for the added files
  • removed svn:executable property from QuestNotification.cc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/modules/questsystem/notifications/NotificationManager.cc

    r5738 r5748  
    8181            return false;
    8282
    83         std::time_t time = std::time(0); //TDO: Doesn't this expire? //!< Get current time.
     83        std::time_t time = std::time(0); //TODO: Doesn't this expire? //!< Get current time.
    8484
    8585        this->allNotificationsList_.insert(std::pair<std::time_t,Notification*>(time,notification));
     
    9696        {
    9797            std::set<std::string> set = it->first->getTargetsSet();
    98             if(all || set.find(notification->getSender()) != set.end() || set.find(ALL) != set.end()) //TDO: Make sure this works.
     98            if(all || set.find(notification->getSender()) != set.end() || set.find(ALL) != set.end()) //TODO: Make sure this works.
    9999            {
    100100                this->notificationLists_[it->second]->insert(std::pair<std::time_t,Notification*>(time,notification)); //!< Insert the Notification in the Notifications list of the current NotificationListener.
     
    123123        this->listenerList_[listener] = index; //!< Add the NotificationListener to the list of listeners.
    124124
    125         std::set<std::string> set = listener->getTargetsSet(); //TDO: Works this?
     125        std::set<std::string> set = listener->getTargetsSet(); //TODO: Works this?
    126126
    127127        //! If all senders are the target of the listener, then the list of notification for that specific listener is te same as the list of all Notifications.
Note: See TracChangeset for help on using the changeset viewer.