2014-11-13 19:30:51 +02:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
2023-07-24 08:02:30 +03:00
|
|
|
** Copyright (C) 2023 by Ivailo Monev <xakepa10@gmail.com>
|
2014-11-13 19:30:51 +02:00
|
|
|
** This application is freely distributable under the GNU Public License.
|
|
|
|
**
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2016-04-30 16:22:26 +00:00
|
|
|
#include <QProcess>
|
2014-11-13 19:30:51 +02:00
|
|
|
#include <kdebug.h>
|
|
|
|
|
2023-07-24 08:02:30 +03:00
|
|
|
void runRdb()
|
2014-11-13 19:30:51 +02:00
|
|
|
{
|
2023-07-24 08:02:30 +03:00
|
|
|
const int krdbstatus = QProcess::execute(QString::fromLatin1("krdb"));
|
|
|
|
if (krdbstatus != 0) {
|
|
|
|
kWarning() << "krdb exited abnormally" << krdbstatus;
|
2022-11-22 02:16:34 +02:00
|
|
|
}
|
2014-11-13 19:30:51 +02:00
|
|
|
}
|
|
|
|
|