------------------------------------------------------------------------------ new-style group #2 returns type (non-zero unless bad timerId)
| 864 | //------------------------------------------------------------------------------ |
| 865 | // new-style group #2 returns type (non-zero unless bad timerId) |
| 866 | int vtkRenderWindowInteractor::IsOneShotTimer(int timerId) |
| 867 | { |
| 868 | vtkTimerIdMapIterator iter = this->TimerMap->find(timerId); |
| 869 | if (iter != this->TimerMap->end()) |
| 870 | { |
| 871 | return ((*iter).second.Type == OneShotTimer); |
| 872 | } |
| 873 | return 0; |
| 874 | } |
| 875 | |
| 876 | //------------------------------------------------------------------------------ |
| 877 | // new-style group #2 returns duration (non-zero unless bad timerId) |
no test coverage detected