From: Jean-Baptiste Mardelle Date: Sat, 7 Mar 2009 18:08:44 +0000 (+0000) Subject: [PATCH by Ray Lehtiniemi] Fix up &&/& confusion X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=02d470e552d16f1cb7ad1a598fc051be67cc4ff4;p=kdenlive [PATCH by Ray Lehtiniemi] Fix up &&/& confusion svn path=/trunk/kdenlive/; revision=3115 --- diff --git a/src/kthumb.cpp b/src/kthumb.cpp index 0fb223d9..6f212863 100644 --- a/src/kthumb.cpp +++ b/src/kthumb.cpp @@ -81,7 +81,7 @@ void MyThread::run() { for (int z = (int) m_frame;z < (int)(m_frame + m_frameLength) && m_producer.is_valid();z++) { if (stop_me) break; val = (int)((z - m_frame) / (m_frame + m_frameLength) * 100.0); - if (last_val != val & val > 1) { + if (last_val != val && val > 1) { emit audioThumbProgress(val); //QApplication::postEvent(m_parent, new ProgressEvent(val, (QEvent::Type)10005));