summaryrefslogtreecommitdiff
path: root/comm/testbus.cc
diff options
context:
space:
mode:
authorsc2000-11-29 12:48:49 +0000
committersc2000-11-29 12:48:49 +0000
commit86ee622f62fd0f6a2dde01a5acfea2a5a47e3070 (patch)
tree32b6dd2057dd1ea4fe879b5978abf6a1cdc13d15 /comm/testbus.cc
parent1fb2dd2c5aa49578bb5a6fcbaaa04460be6728ad (diff)
downloadivy-league-86ee622f62fd0f6a2dde01a5acfea2a5a47e3070.zip
ivy-league-86ee622f62fd0f6a2dde01a5acfea2a5a47e3070.tar.gz
ivy-league-86ee622f62fd0f6a2dde01a5acfea2a5a47e3070.tar.bz2
ivy-league-86ee622f62fd0f6a2dde01a5acfea2a5a47e3070.tar.xz
Changed name of event classes
Diffstat (limited to 'comm/testbus.cc')
-rw-r--r--comm/testbus.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/comm/testbus.cc b/comm/testbus.cc
index 6edeaec..3de72b2 100644
--- a/comm/testbus.cc
+++ b/comm/testbus.cc
@@ -57,7 +57,7 @@ the bus. Most applications are not interested in such events...
void
agentready (IvlEvent& ev)
{
- IvlAgentEvent* ae = dynamic_cast<IvlAgentEvent*> (&ev);
+ IvlBusAgentEvent* ae = dynamic_cast<IvlBusAgentEvent*> (&ev);
if (!ae)
return;
@@ -74,7 +74,7 @@ the bus. Most applications are not interested in such events...
void
agentbye (IvlEvent& ev)
{
- IvlAgentEvent* ae = dynamic_cast<IvlAgentEvent*> (&ev);
+ IvlBusAgentEvent* ae = dynamic_cast<IvlBusAgentEvent*> (&ev);
if (!ae)
return;
IvlBusAgent* a = ae->GetAgent ();