From e35a6f725725bb1c3ebbf8fa337af945c3876d66 Mon Sep 17 00:00:00 2001 From: James Graham Date: Fri, 22 Sep 2023 18:45:01 +0100 Subject: [PATCH] Remove the import version from Bubble.qml, TimelineDelegate.qml and TextDelegate.qml --- src/qml/Component/Timeline/Bubble.qml | 10 +++++----- src/qml/Component/Timeline/TextDelegate.qml | 8 ++++---- src/qml/Component/Timeline/TimelineDelegate.qml | 8 ++++---- 3 files changed, 13 insertions(+), 13 deletions(-) diff --git a/src/qml/Component/Timeline/Bubble.qml b/src/qml/Component/Timeline/Bubble.qml index 56cbc5581..584f0acc4 100644 --- a/src/qml/Component/Timeline/Bubble.qml +++ b/src/qml/Component/Timeline/Bubble.qml @@ -1,13 +1,13 @@ // SPDX-FileCopyrightText: 2023 James Graham // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL -import QtQuick 2.15 -import QtQuick.Controls 2.15 as QQC2 -import QtQuick.Layouts 1.15 +import QtQuick +import QtQuick.Controls as QQC2 +import QtQuick.Layouts -import org.kde.kirigami 2.15 as Kirigami +import org.kde.kirigami as Kirigami -import org.kde.neochat 1.0 +import org.kde.neochat /** * @brief A chat bubble for displaying the content of message events. diff --git a/src/qml/Component/Timeline/TextDelegate.qml b/src/qml/Component/Timeline/TextDelegate.qml index 963f068fc..1ce772de8 100644 --- a/src/qml/Component/Timeline/TextDelegate.qml +++ b/src/qml/Component/Timeline/TextDelegate.qml @@ -1,12 +1,12 @@ // SPDX-FileCopyrightText: 2021 Tobias Fella // SPDX-License-Identifier: GPL-3.0-only -import QtQuick 2.15 -import QtQuick.Layouts 1.15 +import QtQuick +import QtQuick.Layouts -import Qt.labs.qmlmodels 1.0 +import Qt.labs.qmlmodels -import org.kde.neochat 1.0 +import org.kde.neochat /** * @brief A timeline delegate for a text message. diff --git a/src/qml/Component/Timeline/TimelineDelegate.qml b/src/qml/Component/Timeline/TimelineDelegate.qml index 60e355f53..a0991e21b 100644 --- a/src/qml/Component/Timeline/TimelineDelegate.qml +++ b/src/qml/Component/Timeline/TimelineDelegate.qml @@ -1,12 +1,12 @@ // SPDX-FileCopyrightText: 2022 James Graham // SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL -import QtQuick 2.15 -import QtQuick.Controls 2.15 as QQC2 +import QtQuick +import QtQuick.Controls as QQC2 -import org.kde.kirigami 2.15 as Kirigami +import org.kde.kirigami as Kirigami -import org.kde.neochat 1.0 +import org.kde.neochat /** * @brief The base Item for all delegates in the timeline.