Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 4, 2010, 5:25:36 PM (14 years ago)
Author:
dafrick
Message:

Making the background of the NotificationQueue transparent. (Had to change/update TaharezLook look'n'feel file, so don't forget to update data_extern as well…)
Removing some obsolete includes and a warning.

File:
1 edited

Legend:

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

    r7341 r7349  
    3434#include "NotificationManager.h"
    3535
    36 #include <set>
    37 
     36#include "core/CoreIncludes.h"
     37#include "core/GUIManager.h"
    3838#include "util/ScopedSingletonManager.h"
    39 #include "core/CoreIncludes.h"
     39#include "interfaces/NotificationListener.h"
    4040#include "Notification.h"
    41 #include "interfaces/NotificationListener.h"
    42 #include "core/GUIManager.h"
    4341#include "NotificationQueue.h"
    4442
     
    6664
    6765            // Create first queue:
    68             NotificationQueue* queue = new NotificationQueue("all");
     66            this->queue_ = new NotificationQueue("all");
    6967        }
    7068    }
     
    7674    NotificationManager::~NotificationManager()
    7775    {
    78 
     76        this->queue_->destroy();
    7977    }
    8078
Note: See TracChangeset for help on using the changeset viewer.