- Group the imports into Qt, KDE, NeoChat - Import the latest versions - Remove unused imports - Remove unused components - Unify license header styling
16 lines
284 B
QML
16 lines
284 B
QML
// SPDX-FileCopyrightText: 2019 Black Hat <bhat@encom.eu.org>
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
import QtQuick 2.15
|
|
import Qt.labs.platform 1.1
|
|
|
|
FileDialog {
|
|
signal chosen(string path)
|
|
|
|
id: root
|
|
|
|
title: i18n("Please choose a file")
|
|
|
|
onAccepted: chosen(file)
|
|
}
|