Fix compiler warning in tst_QQmlDebugTranslationClient
Remove unused int debugCounter. Change-Id: Ic986ae75c545b5e4bb8c4a387ec66ebfbef7d751 Reviewed-by: Tim Jenssen <tim.jenssen@qt.io> (cherry picked from commitec9612768f
) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org> (cherry picked from commit187d7afb4e
)
This commit is contained in:
parent
3aa816c2ae
commit
107cb70b6d
|
@ -105,9 +105,7 @@ private:
|
||||||
if (newCurrentOutputLine > m_currentOutputLine) {
|
if (newCurrentOutputLine > m_currentOutputLine) {
|
||||||
// lets wait a little bit more to not cut anything
|
// lets wait a little bit more to not cut anything
|
||||||
int triggeredCount = 0;
|
int triggeredCount = 0;
|
||||||
int debugCounter = 0;
|
|
||||||
do {
|
do {
|
||||||
debugCounter++;
|
|
||||||
triggeredCount = m_process->output().size();
|
triggeredCount = m_process->output().size();
|
||||||
QTest::qWait(updateTimeOut);
|
QTest::qWait(updateTimeOut);
|
||||||
newCurrentOutputLine = m_process->output().size();
|
newCurrentOutputLine = m_process->output().size();
|
||||||
|
|
Loading…
Reference in New Issue