X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Fscopes%2Fabstractscopewidget.cpp;h=4f94ba43297f66a4d6523b622abb09eb1e82cebf;hb=8a6e4eb1dea318ecd1c0b313c28b764e89a524c4;hp=45635d46f1c22dc6ef368c5980983be9c7808cad;hpb=65fb2361980ff6a927a8218ecb1d99618bfcc85c;p=kdenlive diff --git a/src/scopes/abstractscopewidget.cpp b/src/scopes/abstractscopewidget.cpp index 45635d46..4f94ba43 100644 --- a/src/scopes/abstractscopewidget.cpp +++ b/src/scopes/abstractscopewidget.cpp @@ -8,19 +8,19 @@ * (at your option) any later version. * ***************************************************************************/ -#include "qtconcurrentrun.h" +#include "QtCore/qtconcurrentrun.h" #include "abstractscopewidget.h" #include "renderer.h" #include "monitor.h" -#include #include #include #include #include #include +#include // Uncomment for Scope debugging. //#define DEBUG_ASW @@ -96,9 +96,9 @@ AbstractScopeWidget::AbstractScopeWidget(bool trackMouse, QWidget *parent) : bool b = true; b &= connect(this, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(customContextMenuRequested(QPoint))); - b &= connect(this, SIGNAL(signalHUDRenderingFinished(uint, uint)), this, SLOT(slotHUDRenderingFinished(uint, uint))); - b &= connect(this, SIGNAL(signalScopeRenderingFinished(uint, uint)), this, SLOT(slotScopeRenderingFinished(uint, uint))); - b &= connect(this, SIGNAL(signalBackgroundRenderingFinished(uint, uint)), this, SLOT(slotBackgroundRenderingFinished(uint, uint))); + b &= connect(this, SIGNAL(signalHUDRenderingFinished(uint,uint)), this, SLOT(slotHUDRenderingFinished(uint,uint))); + b &= connect(this, SIGNAL(signalScopeRenderingFinished(uint,uint)), this, SLOT(slotScopeRenderingFinished(uint,uint))); + b &= connect(this, SIGNAL(signalBackgroundRenderingFinished(uint,uint)), this, SLOT(slotBackgroundRenderingFinished(uint,uint))); b &= connect(m_aRealtime, SIGNAL(toggled(bool)), this, SLOT(slotResetRealtimeFactor(bool))); b &= connect(m_aAutoRefresh, SIGNAL(toggled(bool)), this, SLOT(slotAutoRefreshToggled(bool))); Q_ASSERT(b); @@ -565,3 +565,5 @@ void AbstractScopeWidget::handleMouseDrag(const QPoint &, const RescaleDirection #ifdef DEBUG_ASW #undef DEBUG_ASW #endif + +#include "abstractscopewidget.moc"