Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8665


Ignore:
Timestamp:
May 29, 2011, 5:39:19 PM (13 years ago)
Author:
dafrick
Message:

Notifications should now work over the network. Thanks for the help, Oli.

File:
1 edited

Legend:

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

    r8662 r8665  
    180180    void NotificationQueue::registerVariables()
    181181    {
     182        registerVariable( this->name_, VariableDirection::ToClient, new NetworkCallback<NotificationQueue>(this, &NotificationQueue::changedName));
    182183        registerVariable( this->maxSize_, VariableDirection::ToClient, new NetworkCallback<NotificationQueue>(this, &NotificationQueue::maxSizeChanged));
    183184        registerVariable( this->targets_, VariableDirection::ToClient, new NetworkCallback<NotificationQueue>(this, &NotificationQueue::targetsChanged));
    184185        registerVariable( this->displayTime_, VariableDirection::ToClient, new NetworkCallback<NotificationQueue>(this, &NotificationQueue::displayTimeChanged));
    185186    }
    186 
    187187
    188188    /**
Note: See TracChangeset for help on using the changeset viewer.