drop semicolon from qml files, update CONTRIBUTING guide accordingly

This commit is contained in:
2016-09-15 07:26:00 +03:00
parent 87652eb774
commit f9ddf690c7
13 changed files with 31 additions and 21 deletions

View File

@ -34,6 +34,9 @@ Item {
AWFormatterConfigFactory {
id: awFormatter
}
AWTelemetryHandler {
id: awTelemetryHandler
}
width: childrenRect.width
height: childrenRect.height
@ -57,7 +60,7 @@ Item {
verticalAlignment: Text.AlignVCenter
wrapMode: Text.WordWrap
text: i18n("Detailed information may be found on <a href=\"https://arcanis.me/projects/awesome-widgets/\">project homepage</a>")
onLinkActivated: Qt.openUrlExternally(link);
onLinkActivated: Qt.openUrlExternally(link)
}
Row {
@ -380,6 +383,6 @@ Item {
compiledText.text = newText.replace(/&nbsp;/g, " ")
compiledText.open()
lock = true;
lock = true
}
}