@@ -137,16 +137,16 @@ + threadWithBlock: (of_thread_block_t)block; /** * \brief Creates a new thread with the specified block and object. * - * \param block A block which is executed by the thread * \param object An object which is passed for use in the main method or nil + * \param block A block which is executed by the thread * \return A new, autoreleased thread */ -+ threadWithBlock: (of_thread_block_t)block - object: (id)object; ++ threadWithObject: (id)object + block: (of_thread_block_t)block; #endif /** * \brief Sets the Thread Local Storage for the specified key. * @@ -242,12 +242,12 @@ * * \param block A block which is executed by the thread * \param object An object which is passed for use in the main method or nil * \return An initialized OFThread. */ -- initWithBlock: (of_thread_block_t)block - object: (id)object; +- initWithObject: (id)object + block: (of_thread_block_t)block; #endif /** * \brief The main routine of the thread. You need to reimplement this! *