Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
None
-
Qt Creator 2.2.0
Description
import QtQuick 1.0 Rectangle { width: 360 height: 360 Text { text: "Hello World" anchors.centerIn: parent } MouseArea { anchors.fill: parent onClicked: { var i = parent.width; f(i); } } function f(ii) { var x = ii; console.log("H"); } }
Setting a breakpoint in the function f() shows the variables ii, x, and " 'this' [QObject] Object ". Later one shows only '<no initialized data>' if expanded. Can we display a bit more, or alternatively filter it out?