Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2281


Ignore:
Timestamp:
Nov 26, 2008, 5:52:02 PM (15 years ago)
Author:
dafrick
Message:

Fixed a bug, inserted some debug output.

Location:
code/branches/questsystem3/src/orxonox/overlays/notifications
Files:
2 edited

Legend:

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

    r2280 r2281  
    8787        updateQueue();
    8888       
     89        COUT(3) << "Notification inserted, title: " << notification->getTitle() << std::endl;
     90       
    8991        return true;
    9092    }
     
    104106            text = text + "\n\n------------" + container->notification->getTitle(); + "\n" + container->notification->getMessage();
    105107        }
     108       
     109        COUT(3) << "Queue updated: " << std::endl;
    106110       
    107111        NotificationQueue::queue_s->setQueueText(text);
  • code/branches/questsystem3/src/orxonox/overlays/notifications/NotificationQueue.cc

    r2280 r2281  
    6565        SUPER(NotificationQueue, XMLPort, xmlElement, mode);
    6666       
    67         XMLPortParam(NotificationQueue, "length", getLength, setLength, xmlElement, mode);
     67        XMLPortParam(NotificationQueue, "length", setLength, getLength, xmlElement, mode);
    6868    }
    6969   
Note: See TracChangeset for help on using the changeset viewer.