mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-23 15:45:53 +00:00
24 lines
369 B
C++
24 lines
369 B
C++
|
/*
|
||
|
SPDX-FileCopyrightText: 2013 Eike Hein <hein@kde.org>
|
||
|
|
||
|
SPDX-License-Identifier: GPL-2.0-or-later
|
||
|
*/
|
||
|
|
||
|
#include "processrunner.h"
|
||
|
|
||
|
#include <KProcess>
|
||
|
|
||
|
ProcessRunner::ProcessRunner(QObject *parent)
|
||
|
: QObject(parent)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
ProcessRunner::~ProcessRunner()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
void ProcessRunner::runMenuEditor()
|
||
|
{
|
||
|
KProcess::startDetached(QStringLiteral("kmenuedit"));
|
||
|
}
|