diff options
author | Alessandro Portale <[email protected]> | 2009-07-13 17:35:17 +0200 |
---|---|---|
committer | Alessandro Portale <[email protected]> | 2009-07-13 17:35:17 +0200 |
commit | d3f9757916d5ba10eac63ef6c42611924999c3b0 (patch) | |
tree | d3da900526161354a6c1ea76f9e66247897977d3 /src/libs/qtconcurrent | |
parent | f9ed6f18bce732a0b440b40cb1cb930d779660ff (diff) |
Removing some unused semicolons after Q_UNUSED
There were both variants, with and without extra semicolon.
Diffstat (limited to 'src/libs/qtconcurrent')
-rw-r--r-- | src/libs/qtconcurrent/multitask.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/qtconcurrent/multitask.h b/src/libs/qtconcurrent/multitask.h index f166a5019f4..a043cb4b15b 100644 --- a/src/libs/qtconcurrent/multitask.h +++ b/src/libs/qtconcurrent/multitask.h @@ -126,20 +126,20 @@ protected: void setProgressRange(int min, int max) { - Q_UNUSED(min); - Q_UNUSED(max); + Q_UNUSED(min) + Q_UNUSED(max) updateProgress(); } void setProgressValue(int value) { - Q_UNUSED(value); + Q_UNUSED(value) updateProgress(); } void setProgressText(QString value) { - Q_UNUSED(value); + Q_UNUSED(value) updateProgressText(); } private: |