Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 17, 2008, 6:18:41 PM (15 years ago)
Author:
rgrieder
Message:

Changed all C-Style casts with C++ casts that I was able to find with a regex.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation/src/orxonox/tools/Timer.h

    r2485 r2506  
    160160                this->bLoop_ = bLoop;
    161161                executor->setObject(object);
    162                 this->executor_ = (Executor*)executor;
     162                this->executor_ = static_cast<Executor*>(executor);
    163163                this->bActive_ = true;
    164164
     
    198198                this->setInterval(interval);
    199199                this->bLoop_ = bLoop;
    200                 this->executor_ = (Executor*)executor;
     200                this->executor_ = static_cast<Executor*>(executor);
    201201                this->bActive_ = true;
    202202
Note: See TracChangeset for help on using the changeset viewer.