- Timestamp:
- Jun 9, 2010, 9:32:58 PM (15 years ago)
- Location:
- code/branches/presentation3/src/modules/questsystem/notifications
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/presentation3/src/modules/questsystem/notifications/Notification.cc
r6945 r7127 41 41 42 42 CreateUnloadableFactory(Notification); 43 43 44 44 /** 45 45 @brief … … 69 69 Notification::~Notification() 70 70 { 71 71 72 72 } 73 73 -
code/branches/presentation3/src/modules/questsystem/notifications/NotificationManager.cc
r6945 r7127 66 66 NotificationManager::~NotificationManager() 67 67 { 68 68 69 69 } 70 70 … … 227 227 int identifier = this->listenerList_.find(listener)->second; 228 228 std::multimap<std::time_t, Notification*>* map = this->notificationLists_.find(identifier)->second; 229 229 230 230 // Make sure all Notifications are removed. 231 231 std::multimap<std::time_t, Notification*>::iterator it = map->begin(); -
code/branches/presentation3/src/modules/questsystem/notifications/NotificationQueue.cc
r6945 r7127 57 57 { 58 58 this->registered_ = false; 59 59 60 60 RegisterObject(NotificationQueue); 61 61 this->initialize(); … … 431 431 // Unregister the NotificationQueue with the NotificationManager. 432 432 NotificationManager::getInstance().unregisterNotification(container->notification, this); 433 433 434 434 this->removeElement(container->overlay); 435 435 this->containers_.erase(container);
Note: See TracChangeset
for help on using the changeset viewer.