Subversion Repositories HomeAutomation

Rev

Rev 1646 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

Rev 1646 Rev 1746
Line 124... Line 124...
124
   
124
   
125
    TimerList::iterator it = this->timers_.find(id);
125
    TimerList::iterator it = this->timers_.find(id);
126
   
126
   
127
    if (it != this->timers_.end())
127
    if (it != this->timers_.end())
128
    {
128
    {
129
        it->second->Cancel();
129
        this->timers_.erase(id);
130
    }
130
    }
131
   
131
   
132
    this->mutex_timers_.unlock();
132
    this->mutex_timers_.unlock();
133
}
133
}
134
 
134