diff options
author | axis <qt-info@nokia.com> | 2009-06-29 10:58:35 (GMT) |
---|---|---|
committer | axis <qt-info@nokia.com> | 2009-06-29 10:58:35 (GMT) |
commit | 5794f2253849c9dcdb11fd196a8980f273bdbba9 (patch) | |
tree | 9cce0998f4abf42e083e6cee4aae8367ef5d2322 /src/gui/kernel/qsound_s60.cpp | |
parent | e507a4b2f59e42b74833d047cc51e648df6d5eb5 (diff) | |
download | Qt-5794f2253849c9dcdb11fd196a8980f273bdbba9.zip Qt-5794f2253849c9dcdb11fd196a8980f273bdbba9.tar.gz Qt-5794f2253849c9dcdb11fd196a8980f273bdbba9.tar.bz2 |
Fixed various useless warnings.
Diffstat (limited to 'src/gui/kernel/qsound_s60.cpp')
-rw-r--r-- | src/gui/kernel/qsound_s60.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qsound_s60.cpp b/src/gui/kernel/qsound_s60.cpp index 00fc2fe..c9eedf5 100644 --- a/src/gui/kernel/qsound_s60.cpp +++ b/src/gui/kernel/qsound_s60.cpp @@ -117,7 +117,7 @@ protected: } else { // We don't have a way to inform about errors -> just decrement loops // in order that QSound::isFinished will return true; - while(decLoop(sound)); + while(decLoop(sound)) {} } } |