Should have a space between // and comment "whitespace/comments"

This commit is contained in:
Micke Prag 2012-02-28 22:20:03 +01:00
parent e1608f94a8
commit 75f21588e5
39 changed files with 225 additions and 224 deletions

View file

@ -34,7 +34,7 @@ EventHandler::~EventHandler(void) {
std::list<EventRef>::const_iterator it = d->eventList.begin();
for(; it != d->eventList.end(); ++it) {
//We clear the handler if someone else still has a reference to the event
// We clear the handler if someone else still has a reference to the event
(*it)->clearHandler();
}
@ -62,7 +62,7 @@ bool EventHandler::listIsSignalled() {
void EventHandler::signal(Event *event) {
pthread_mutex_lock(&d->mutex);
//event->setSignaled();
// event->setSignaled();
pthread_cond_signal(&d->event);
pthread_mutex_unlock(&d->mutex);
}