~ci-train-bot/libertine/libertine-ubuntu-zesty-2264

« back to all changes in this revision

Viewing changes to qml/gui/libertine.qml

  • Committer: Larry Price
  • Date: 2016-09-27 14:20:23 UTC
  • mto: (94.157.38 devel)
  • mto: This revision was merged to the branch mainline in revision 173.
  • Revision ID: larry.price@canonical.com-20160927142023-z21gc8clyje32qrx
Initial commonizing of qml files

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
    Component.onCompleted: {
43
43
        packageOperationDetails.error.connect(error)
44
44
 
45
 
        Qt.createComponent("ContainerManager.qml").createObject(mainView).fixIntegrity()
 
45
        Qt.createComponent("../common/ContainerManager.qml").createObject(mainView).fixIntegrity()
46
46
 
47
47
        currentContainer = containerConfigList.defaultContainerId
48
48
 
50
50
            pageStack.push(Qt.resolvedUrl("ContainersView.qml"))
51
51
            if (currentContainer) {
52
52
                containerAppsList.setContainerApps(currentContainer)
53
 
                pageStack.push(Qt.resolvedUrl("ContainerEditView.qml"), {currentContainer: currentContainer})
 
53
                pageStack.push(Qt.resolvedUrl("../common/ContainerEditView.qml"), {currentContainer: currentContainer})
54
54
            }
55
55
        }
56
56
        else {
59
59
    }
60
60
 
61
61
    onError: {
62
 
        PopupUtils.open(Qt.resolvedUrl("GenericErrorDialog.qml"), null,
 
62
        PopupUtils.open(Qt.resolvedUrl("../common/GenericErrorDialog.qml"), null,
63
63
                                       {"short_description": short_description, "details": details})
64
64
    }
65
65