Replaced method name run' with mainLoop', and stop' and quit'

with `exitMainLoop' in most places.
This commit is contained in:
crs
2002-07-30 15:17:44 +00:00
parent 8913acac34
commit 9792d35a6b
26 changed files with 90 additions and 90 deletions

View File

@@ -40,9 +40,9 @@ CPrimaryClient::~CPrimaryClient()
}
void
CPrimaryClient::stop()
CPrimaryClient::exitMainLoop()
{
m_screen->stop();
m_screen->exitMainLoop();
}
void
@@ -122,9 +122,9 @@ CPrimaryClient::open()
}
void
CPrimaryClient::run()
CPrimaryClient::mainLoop()
{
m_screen->run();
m_screen->mainLoop();
}
void