~qqworini/ubuntu-rssreader-app/uitk-1_3

« back to all changes in this revision

Viewing changes to shorts/qml/shorts-app.qml

  • Committer: Joey Chan
  • Date: 2015-07-19 13:37:25 UTC
  • Revision ID: qqworini@gmail.com-20150719133725-6pdfnh5g8k9ykaph
fix some bugs when switch to cmake

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
//    }
20
20
 
21
21
    objectName: "mainView"
22
 
    applicationName: "shorts-app.ubuntu"
 
22
    applicationName: "com.ubuntu.shorts"
23
23
    anchorToKeyboard: true
24
24
 
25
25
    width: units.gu(100)
182
182
            id: refreshAction
183
183
 
184
184
            text:  i18n.tr("Refresh")
185
 
            iconSource: "/img/qml/icons/reload.svg"
 
185
            iconSource: "./icons/reload.svg"
186
186
            onTriggered: refresh()
187
187
        }
188
188
 
216
216
            id: editTopicsAction
217
217
            objectName:"editTopicsAction"
218
218
            text:  i18n.tr("Edit topics")
219
 
            iconSource: Qt.resolvedUrl("/img/qml/icons/edit.svg")
 
219
            iconSource: Qt.resolvedUrl("./icons/edit.svg")
220
220
            onTriggered: {
221
221
                pageStack.push(topicManagement)
222
222
            }