Changeset 10624 for code/trunk/src/modules/notifications
- Timestamp:
- Oct 4, 2015, 9:12:21 PM (9 years ago)
- Location:
- code/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
-
code/trunk/src/modules/notifications/NotificationDispatcher.cc
r9667 r10624 37 37 #include "core/EventIncludes.h" 38 38 #include "core/XMLPort.h" 39 #include "network/NetworkFunction .h"39 #include "network/NetworkFunctionIncludes.h" 40 40 #include "network/Host.h" 41 41 … … 118 118 if(!GameMode::isStandalone()) 119 119 { 120 callMemberNetworkFunction( NotificationDispatcher,broadcastHelper, this->getObjectID(), NETWORK_PEER_ID_BROADCAST);120 callMemberNetworkFunction(&NotificationDispatcher::broadcastHelper, this->getObjectID(), NETWORK_PEER_ID_BROADCAST); 121 121 } 122 122 } … … 148 148 else if(GameMode::isServer()) 149 149 { 150 callMemberNetworkFunction( NotificationDispatcher,dispatch, this->getObjectID(), clientId, clientId);150 callMemberNetworkFunction(&NotificationDispatcher::dispatch, this->getObjectID(), clientId, clientId); 151 151 } 152 152 } -
code/trunk/src/modules/notifications/NotificationManager.cc
r9667 r10624 37 37 #include "core/CoreIncludes.h" 38 38 #include "core/LuaState.h" 39 #include " util/ScopedSingletonManager.h"39 #include "core/singleton/ScopedSingletonIncludes.h" 40 40 41 41 #include "interfaces/NotificationListener.h" … … 47 47 { 48 48 49 ManageScopedSingleton(NotificationManager, ScopeID::Root, false); 49 ManageScopedSingleton(NotificationManager, ScopeID::ROOT, false); 50 51 RegisterAbstractClass(NotificationManager).inheritsFrom<NotificationListener>(); 50 52 51 53 /**
Note: See TracChangeset
for help on using the changeset viewer.