From dcc26b01ffbcf05372f9573f85704f48539e59f2 Mon Sep 17 00:00:00 2001 From: Arnaud Bienner Date: Wed, 25 Apr 2012 01:22:30 +0200 Subject: [PATCH] Correct define guard's name --- ext/libclementine-common/core/concurrentrun.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ext/libclementine-common/core/concurrentrun.h b/ext/libclementine-common/core/concurrentrun.h index d9e6a8e83..0ada90c4d 100644 --- a/ext/libclementine-common/core/concurrentrun.h +++ b/ext/libclementine-common/core/concurrentrun.h @@ -15,8 +15,8 @@ along with Clementine. If not, see . */ -#ifndef THREADFUNCTION_H -#define THREADFUNCTION_H +#ifndef CONCURRENTRUN_H +#define CONCURRENTRUN_H #include @@ -32,9 +32,9 @@ 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() functor syntax. - With ConcurrentRun::Run(), time critical changes are performed in their own - pool, which is not empty by other actions (as it happens when using - QtConcurrentRun::run()) + With ConcurrentRun::Run(), time critical changes can be performed in their + own pool, which is not empty by other actions (as it happens when using + QtConcurrentRun::run()). ThreadFunctor classes are used to store a functor and its arguments, and Run() functions are used for convenience: to directly create a new @@ -133,4 +133,4 @@ namespace ConcurrentRun { } } -#endif // THREADFUNCTION_H +#endif // CONCURRENTRUN_H