Skip to content
Snippets Groups Projects
Verified Commit ebc93c88 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Explicitly namespace platform module

parent 025a1b8b
No related branches found
No related tags found
No related merge requests found
Pipeline #2008 passed
......@@ -2,18 +2,18 @@
//
// SPDX-License-Identifier: GPL-3.0-or-later
import Qt.labs.platform 1.1
import Qt.labs.platform 1.1 as P
import QtQuick 2.15
import QtQuick.Controls 2.15
import im.nheko 1.0
MessageDialog {
P.MessageDialog {
id: logoutRoot
title: qsTr("Log out")
text: CallManager.isOnCall ? qsTr("A call is in progress. Log out?") : qsTr("Are you sure you want to log out?")
modality: Qt.WindowModal
flags: Qt.Tool | Qt.WindowStaysOnTopHint | Qt.WindowCloseButtonHint | Qt.WindowTitleHint
buttons: MessageDialog.Ok | MessageDialog.Cancel
buttons: P.MessageDialog.Ok | P.MessageDialog.Cancel
onAccepted: Nheko.logout()
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment