- Timestamp:
- May 20, 2009, 4:01:22 PM (15 years ago)
- Location:
- code/trunk/src/orxonox/overlays/notifications
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/orxonox/overlays/notifications/Notification.cc
r2911 r2994 58 58 The message of the Notification. 59 59 */ 60 Notification::Notification(const std::string & message) : BaseObject( this)60 Notification::Notification(const std::string & message) : BaseObject(NULL) 61 61 { 62 62 this->message_ = message; -
code/trunk/src/orxonox/overlays/notifications/NotificationOverlay.cc
r2911 r2994 59 59 /** 60 60 @brief 61 Constructor. Initi laizes the class creates a graphical representation of the input Notification for the input Queue.61 Constructor. Initializes the class creates a graphical representation of the input Notification for the input Queue. 62 62 @param queue 63 63 A pointer to the queue the NotificatonOverlay belongs to. … … 67 67 Throws an Argument-Exception if either no Notification or no NotificationQueue were input. 68 68 */ 69 NotificationOverlay::NotificationOverlay(NotificationQueue* queue, Notification* notification) : OverlayText( this)69 NotificationOverlay::NotificationOverlay(NotificationQueue* queue, Notification* notification) : OverlayText(NULL) 70 70 { 71 71 this->initialize();
Note: See TracChangeset
for help on using the changeset viewer.