Warning, /network/neochat/src/qml/OpenFileDialog.qml is written in an unsupported language. File is not indexed.

0001 // SPDX-FileCopyrightText: 2023 Tobias Fella <tobias.fella@kde.org>
0002 // SPDX-License-Identifier: GPL-2.0-or-later
0003 
0004 import QtQuick
0005 import QtQuick.Dialogs
0006 
0007 FileDialog {
0008     id: root
0009 
0010     signal chosen(string path)
0011 
0012     title: i18n("Select a File")
0013     onAccepted: root.chosen(selectedFile)
0014 }