diff --git a/mix/DebuggingStateWrapper.cpp b/mix/DebuggingStateWrapper.cpp index 732934659..60f78fa42 100644 --- a/mix/DebuggingStateWrapper.cpp +++ b/mix/DebuggingStateWrapper.cpp @@ -128,10 +128,10 @@ QVariantList DebuggingStateWrapper::debugCallData() return fillList(qVariantDump(dump), QVariant(filled)); } -QVariantList DebuggingStateWrapper::qVariantDump(std::list> const& dump) +QVariantList DebuggingStateWrapper::qVariantDump(std::list> const& _dump) { QVariantList ret; - for (std::list line: dump) + for (std::list line: _dump) { QStringList qLine; for (std::string cell: line) diff --git a/mix/DebuggingStateWrapper.h b/mix/DebuggingStateWrapper.h index 32bc3b9c8..a46a2fcd2 100644 --- a/mix/DebuggingStateWrapper.h +++ b/mix/DebuggingStateWrapper.h @@ -136,7 +136,7 @@ private: bytes m_data; QStringList fillList(QStringList& _list, QString const& _emptyValue); QVariantList fillList(QVariantList _list, QVariant const& _emptyValue); - QVariantList qVariantDump(std::list> const& dump); + QVariantList qVariantDump(std::list> const& _dump); }; } diff --git a/mix/qml/Debugger.qml b/mix/qml/Debugger.qml index e8177c8c6..f6b4d86e9 100644 --- a/mix/qml/Debugger.qml +++ b/mix/qml/Debugger.qml @@ -64,10 +64,6 @@ Rectangle { RowLayout { height: 100 - Image { - id: compileFailed - source: "qrc:/qml/img/compilfailed.png" - } ColumnLayout { Text { diff --git a/mix/qml/js/Debugger.js b/mix/qml/js/Debugger.js index 7c32c2426..22f94d620 100644 --- a/mix/qml/js/Debugger.js +++ b/mix/qml/js/Debugger.js @@ -7,7 +7,6 @@ var currentSelectedState = null; var jumpStartingPoint = null; function init() { - console.log('popopop'); if (debugStates === undefined) return; @@ -16,7 +15,6 @@ function init() statesList.model = humanReadableExecutionCode; currentSelectedState = 0; select(currentSelectedState); - //displayReturnValue(); jumpoutbackaction.enabled(false); jumpintobackaction.enabled(false); @@ -30,7 +28,6 @@ function moveSelection(incr) { if (currentSelectedState + incr < debugStates.length) select(currentSelectedState + incr); - statesSlider.value = currentSelectedState; } }