Details
-
Bug
-
Resolution: Done
-
Not Evaluated
-
Qt Creator 2.3.0-beta
-
Windows 7
Description
I tried to debug a function which is called in Component.onComplete and defined in an external file storage.js
Component.onCompleted: { // Initialize the database Storage.initialize(); // Sets a value in the database Storage.setSetting("mySetting","myValue"); // Sets the textDisplay element's text to the value we just set //console.log("mySetting"); textDisplay.text = "The value of mySetting is:\n" + Storage.getSetting("mySetting"); }
but the breakpoint is not hit.