add braces

This commit is contained in:
Andrey Skvortsov 2010-09-21 21:26:08 -07:00
parent b14c0a9fe9
commit 833c8b10a5

View File

@ -44,9 +44,10 @@ class ProcessingThread {
virtual void end () {}
void process () {
if (stopped)
if (stopped){
#undef THREAD_PRIORITY_NORMAL
thread = Glib::Thread::create(sigc::mem_fun(*this, &ProcessingThread::process_), (unsigned long int)0, true, true, Glib::THREAD_PRIORITY_NORMAL);
}
}
void process_ () {
stopped = false;