1
0
mirror of https://github.com/clementine-player/Clementine synced 2024-12-16 11:19:18 +01:00

Correct define guard's name

This commit is contained in:
Arnaud Bienner 2012-04-25 01:22:30 +02:00
parent 579d775894
commit dcc26b01ff

View File

@ -15,8 +15,8 @@
along with Clementine. If not, see <http://www.gnu.org/licenses/>. along with Clementine. If not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef THREADFUNCTION_H #ifndef CONCURRENTRUN_H
#define THREADFUNCTION_H #define CONCURRENTRUN_H
#include <tr1/functional> #include <tr1/functional>
@ -32,9 +32,9 @@
This is problematic when we do not want to share the same thread pool over This is problematic when we do not want to share the same thread pool over
all the application, but want to keep the convenient QtConcurrent::run() all the application, but want to keep the convenient QtConcurrent::run()
functor syntax. functor syntax.
With ConcurrentRun::Run(), time critical changes are performed in their own With ConcurrentRun::Run(), time critical changes can be performed in their
pool, which is not empty by other actions (as it happens when using own pool, which is not empty by other actions (as it happens when using
QtConcurrentRun::run()) QtConcurrentRun::run()).
ThreadFunctor classes are used to store a functor and its arguments, and ThreadFunctor classes are used to store a functor and its arguments, and
Run() functions are used for convenience: to directly create a new Run() functions are used for convenience: to directly create a new
@ -133,4 +133,4 @@ namespace ConcurrentRun {
} }
} }
#endif // THREADFUNCTION_H #endif // CONCURRENTRUN_H