File indexing completed on 2025-01-26 05:06:20

0001 /*
0002     SPDX-FileCopyrightText: 2023 Nicolas Fella <nicolas.fella@gmx.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "applauncher.h"
0008 
0009 #include <KIO/OpenUrlJob>
0010 #include <KNotificationJobUiDelegate>
0011 
0012 void AppLauncher::openUrl(const QUrl &url)
0013 {
0014     auto *job = new KIO::OpenUrlJob(url);
0015     job->setUiDelegate(new KNotificationJobUiDelegate(KJobUiDelegate::AutoErrorHandlingEnabled));
0016     job->start();
0017 }