Warning, /plasma/plasma-integration/autotests/qml/filedialog_withparent.qml is written in an unsupported language. File is not indexed.

0001 /*  This file is part of the KDE libraries
0002     SPDX-FileCopyrightText: 2015 David Rosca <nowrep@gmail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0005 */
0006 
0007 import QtQuick 2.2
0008 import QtQuick.Window 2.2
0009 import QtQuick.Dialogs 1.0
0010 
0011 Window {
0012     x: 100
0013     y: 100
0014     width: 100
0015     height: 100
0016 
0017     FileDialog {
0018         id: fileDialog
0019         Component.onCompleted: visible = true
0020     }
0021 }