File indexing completed on 2024-04-28 12:42:18

0001 /*
0002  * SPDX-FileCopyrightText: 2014 Martin Klapetek <mklapetek@kde.org>
0003  *
0004  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0005  *
0006  */
0007 
0008 #include "kaccountsuiplugin.h"
0009 
0010 #include <QVariant>
0011 #include <QWindow>
0012 
0013 namespace KAccounts
0014 {
0015 
0016 KAccountsUiPlugin::KAccountsUiPlugin(QObject *parent)
0017     : QObject(parent)
0018 {
0019 }
0020 
0021 KAccountsUiPlugin::~KAccountsUiPlugin()
0022 {
0023 }
0024 
0025 QWindow *KAccountsUiPlugin::transientParent() const
0026 {
0027     return property("transientParent").value<QWindow *>();
0028 }
0029 
0030 };
0031 
0032 #include "moc_kaccountsuiplugin.cpp"