Reorganize src/ directory

This commit is contained in:
Fabien Freling 2019-05-08 12:11:17 +02:00
parent 8aa8b9b69a
commit 3c0c2cff6f
19 changed files with 12 additions and 5 deletions

View file

@ -1,23 +0,0 @@
import QtQuick 2.5
import QtQuick.Controls 1.4
import QtQuick.Layouts 1.2
Item {
property alias button1: button1
property alias button2: button2
RowLayout {
anchors.centerIn: parent
Button {
id: button1
text: qsTr("Open ROM...")
}
Button {
id: button2
text: qsTr("Press Me 2")
}
}
}