Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 13, 2009, 5:05:38 PM (15 years ago)
Author:
rgrieder
Message:

Removed the filename part of all @file foo.cc because Doxygen chooses the (always correct) filename automatically.
Also removed a few <string> includes that are not necessary.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/pch/src/orxonox/overlays/notifications/NotificationOverlay.cc

    r3144 r3158  
    2828
    2929/**
    30     @file NotificationOverlay.cc
     30    @file
    3131    @brief Implementation of the NotificationOverlay class.
    3232*/
     
    127127        Clips the input message so that it meets the requirements for the maximal length of Notifications given by the NotificationQueue.
    128128    */
    129     const std::string NotificationOverlay::clipMessage(const std::string & message)
     129    std::string NotificationOverlay::clipMessage(const std::string & message)
    130130    {
    131131        if(message.length() <= (unsigned int)this->queue_->getNotificationLength()) //!< If the message is not too long.
Note: See TracChangeset for help on using the changeset viewer.