indentation and other formatting changes. also cleaned up

#includes.
This commit is contained in:
crs
2002-06-10 22:06:45 +00:00
parent 68940e58f3
commit 62519b19fe
104 changed files with 3089 additions and 1815 deletions

View File

@@ -5,13 +5,14 @@
//
CFunctionJob::CFunctionJob(void (*func)(void*), void* arg) :
m_func(func),
m_arg(arg)
m_func(func),
m_arg(arg)
{
// do nothing
}
void CFunctionJob::run()
void
CFunctionJob::run()
{
if (m_func != NULL) {
m_func(m_arg);