| 33 | } |
| 34 | |
| 35 | KTimerCallback::~KTimerCallback() { |
| 36 | if (this->active) { |
| 37 | removeTimer(this); |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | KTimer::KTimer() : KObject(KTYPE_TIMER), waitCond(std::make_shared<BoxedWineCondition>(B("KTimer::waitCond"))), timer(this) { |
| 42 | } |
nothing calls this directly
no test coverage detected