| 1 | /* |
| 2 | This file is part of the KDE libraries |
| 3 | SPDX-FileCopyrightText: 2020 Ahmad Samir <a.samirh78@gmail.com> |
| 4 | |
| 5 | SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
| 6 | */ |
| 7 | |
| 8 | #include "openorexecutefileinterface.h" |
| 9 | |
| 10 | using namespace KIO; |
| 11 | |
| 12 | class KIO::OpenOrExecuteFileInterfacePrivate |
| 13 | { |
| 14 | }; |
| 15 | |
| 16 | OpenOrExecuteFileInterface::OpenOrExecuteFileInterface(QObject *parent) |
| 17 | : QObject(parent) |
| 18 | { |
| 19 | } |
| 20 | |
| 21 | OpenOrExecuteFileInterface::~OpenOrExecuteFileInterface() = default; |
| 22 | |
| 23 | void OpenOrExecuteFileInterface::promptUserOpenOrExecute(KJob *job, const QString &mimetype) |
| 24 | { |
| 25 | Q_UNUSED(job) |
| 26 | Q_UNUSED(mimetype) |
| 27 | Q_EMIT canceled(); |
| 28 | } |
| 29 | |
| 30 | #include "moc_openorexecutefileinterface.cpp" |
| 31 | |