From ac4aa77594d561af149cc66cbfb372b75e020655 Mon Sep 17 00:00:00 2001 From: Rafael de Lucena Valle Date: Tue, 5 Feb 2019 01:32:27 -0200 Subject: [PATCH] Remove unused --- tests-functionnal/qml/Children.qml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 tests-functionnal/qml/Children.qml diff --git a/tests-functionnal/qml/Children.qml b/tests-functionnal/qml/Children.qml deleted file mode 100644 index fd72748..0000000 --- a/tests-functionnal/qml/Children.qml +++ /dev/null @@ -1,20 +0,0 @@ -import QtQuick 2.0 - -Item { - id: main - Text { - text: "Parent" - } - - Item { - Text { - text: "Child" - } - - Item { - Text { - text: "Grandchild" - } - } - } -}