* indentations + whitespace cleanup

This commit is contained in:
Caner Candan 2011-05-05 16:54:00 +02:00
commit 56c6edab04
285 changed files with 6068 additions and 6223 deletions

View file

@ -79,13 +79,13 @@ public :
void operator()(void)
{
time_t now = time(0);
time_t now = time(0);
if (now >= last_time + interval)
{
last_time = now;
eoDynUpdater::operator() ();
}
if (now >= last_time + interval)
{
last_time = now;
eoDynUpdater::operator() ();
}
}
private :
const time_t interval;
@ -106,10 +106,10 @@ public :
void operator()(void)
{
if (++counter % interval == 0)
{
eoDynUpdater::operator() ();
}
if (++counter % interval == 0)
{
eoDynUpdater::operator() ();
}
}
private :
const unsigned interval;