SVN commit 460479 by aseigo: more docu fixes, this time errant colons, as Dominik Haumann noted M +3 -3 Job.h M +2 -2 State.h M +2 -2 Thread.h --- trunk/kdenonbeta/threadweaver/Weaver/Job.h #460478:460479 @@ -50,8 +50,8 @@ yet. Otherwise, no dependancy will be added. If dep is zero, it is ignored. - @param dep: the other job this job depends on - @param parent: the parent QObject + @param dep the other job this job depends on + @param parent the parent QObject */ Job (Job* dep = 0, QObject* parent=0); @@ -105,7 +105,7 @@ This function is inefficient, and should be used only to abort execution of a job. - @param dep: the dependancy that will be removed + @param dep the dependancy that will be removed */ bool removeDependancy (Job *dep); --- trunk/kdenonbeta/threadweaver/Weaver/State.h #460478:460479 @@ -76,8 +76,8 @@ /** Resume job processing. */ virtual void resume() = 0; /** Assign a job to an idle thread. - @param th: the thread to give a new Job to - @param previous: the job this thread finished before calling + @param th the thread to give a new Job to + @param previous the job this thread finished before calling * */ virtual Job* applyForWork ( Thread *th, Job* previous ) = 0; /** Wait (by suspending the calling thread) until a job becomes available. */ --- trunk/kdenonbeta/threadweaver/Weaver/Thread.h #460478:460479 @@ -34,7 +34,7 @@ These thread objects are only used inside the Weaver parent object. - @param parent: the parent WeaverImpl + @param parent the parent WeaverImpl */ Thread(WeaverImpl *parent=0); @@ -51,7 +51,7 @@ /** Provide the msleep() method (protected in QThread) to be available for executed jobs. - @param msec: amount of milliseconds + @param msec amount of milliseconds */ void msleep(unsigned long msec);