From efda425b6a569e135e6ff51a4124d52c844b28d8 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Mon, 19 Jun 2023 20:45:57 +0200 Subject: Some qmllint fixes --- resources/qml/voip/DeviceError.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'resources/qml/voip/DeviceError.qml') diff --git a/resources/qml/voip/DeviceError.qml b/resources/qml/voip/DeviceError.qml index afb70b7f..4b9b4675 100644 --- a/resources/qml/voip/DeviceError.qml +++ b/resources/qml/voip/DeviceError.qml @@ -5,9 +5,9 @@ import QtQuick 2.9 import QtQuick.Controls 2.3 import QtQuick.Layouts 1.2 -import im.nheko 1.0 Popup { + id: r property string errorString property var image @@ -24,11 +24,11 @@ Popup { Image { Layout.preferredWidth: 16 Layout.preferredHeight: 16 - source: "image://colorimage/" + image + "?" + palette.windowText + source: "image://colorimage/" + r.image + "?" + palette.windowText } Label { - text: errorString + text: r.errorString color: palette.windowText } -- cgit 1.5.1