From 673a118d22e9e5bbd2def2716e32bff92a2359fa Mon Sep 17 00:00:00 2001 From: Ronan Abhamon Date: Mon, 26 Sep 2016 16:10:53 +0200 Subject: [PATCH] fix(app): fix many imports --- tests/ui/Linphone/Chat/Chat.qml | 4 ++-- tests/ui/Linphone/InvertedMouseArea/InvertedMouseArea.qml | 2 +- tests/ui/Linphone/qmldir | 3 +++ tests/ui/Views/MainWindow/MainWindow.qml | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/tests/ui/Linphone/Chat/Chat.qml b/tests/ui/Linphone/Chat/Chat.qml index d4c59e06d..ca66bf262 100644 --- a/tests/ui/Linphone/Chat/Chat.qml +++ b/tests/ui/Linphone/Chat/Chat.qml @@ -118,10 +118,10 @@ ScrollableListView { id: loader source: $type === 'message' ? ( - 'qrc:/ui/components/chat/' + + 'qrc:/ui/Linphone/Chat/' + ($outgoing ? 'Outgoing' : 'Incoming') + 'Message.qml' - ) : 'qrc:/ui/components/chat/Event.qml' + ) : 'qrc:/ui/Linphone/Chat/Event.qml' } } diff --git a/tests/ui/Linphone/InvertedMouseArea/InvertedMouseArea.qml b/tests/ui/Linphone/InvertedMouseArea/InvertedMouseArea.qml index 4e68838ac..055810bb2 100644 --- a/tests/ui/Linphone/InvertedMouseArea/InvertedMouseArea.qml +++ b/tests/ui/Linphone/InvertedMouseArea/InvertedMouseArea.qml @@ -1,6 +1,6 @@ import QtQuick 2.7 -import Linphone.Styles 1.0 +import Linphone 1.0 // =================================================================== // Helper to handle button click outside a component. diff --git a/tests/ui/Linphone/qmldir b/tests/ui/Linphone/qmldir index 56d75aa14..1c1fdc1de 100644 --- a/tests/ui/Linphone/qmldir +++ b/tests/ui/Linphone/qmldir @@ -23,9 +23,12 @@ DialogPlus 1.0 Dialog/DialogPlus.qml # Form ActionBar 1.0 Form/ActionBar.qml ActionButton 1.0 Form/ActionButton.qml +CheckBoxText 1.0 Form/CheckBoxText.qml DarkButton 1.0 Form/DarkButton.qml +DropZone 1.0 Form/DropZone.qml ExclusiveButtons 1.0 Form/ExclusiveButtons.qml LightButton 1.0 Form/LightButton.qml +ListForm 1.0 Form/ListForm.qml TransparentComboBox 1.0 Form/TransparentComboBox.qml # Image diff --git a/tests/ui/Views/MainWindow/MainWindow.qml b/tests/ui/Views/MainWindow/MainWindow.qml index b7997801e..2890c8934 100644 --- a/tests/ui/Views/MainWindow/MainWindow.qml +++ b/tests/ui/Views/MainWindow/MainWindow.qml @@ -167,7 +167,7 @@ ApplicationWindow { Loader { Layout.fillHeight: true Layout.fillWidth: true - source: 'qrc:/ui/Views/MainWindow/Contacts.qml' + source: 'qrc:/ui/Views/MainWindow/Home.qml' } }