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

@ -70,7 +70,7 @@ Item {
horizontalAlignment: Text.AlignLeft
textFormat: Text.RichText
text: awActions.getAboutText("links")
onLinkActivated: Qt.openUrlExternally(link);
onLinkActivated: Qt.openUrlExternally(link)
}
QtControls.Label {
@ -103,7 +103,7 @@ Item {
horizontalAlignment: Text.AlignJustify
textFormat: Text.RichText
text: awActions.getAboutText("3rdparty")
onLinkActivated: Qt.openUrlExternally(link);
onLinkActivated: Qt.openUrlExternally(link)
}
QtControls.Label {
@ -114,7 +114,7 @@ Item {
verticalAlignment: Text.AlignTop
textFormat: Text.RichText
text: awActions.getAboutText("thanks")
onLinkActivated: Qt.openUrlExternally(link);
onLinkActivated: Qt.openUrlExternally(link)
}
}
}