mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 10:22:48 +00:00
kinit: remove redundant reparseConfiguration() method of org.kde.KLauncher interface
klauncher is no longer responsible for KIO slaves Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
b4017ba41a
commit
89e0305c24
3 changed files with 1 additions and 14 deletions
|
@ -94,12 +94,6 @@ public Q_SLOTS: // METHODS
|
|||
return reply;
|
||||
}
|
||||
|
||||
inline QDBusReply<void> reparseConfiguration()
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
return callWithArgumentList(QDBus::Block, QLatin1String("reparseConfiguration"), argumentList);
|
||||
}
|
||||
|
||||
inline QDBusReply<void> setLaunchEnv(const QString &name, const QString &value)
|
||||
{
|
||||
QList<QVariant> argumentList;
|
||||
|
|
|
@ -17,9 +17,9 @@
|
|||
*/
|
||||
|
||||
#include "klauncher_adaptor.h"
|
||||
#include "kprotocolmanager.h"
|
||||
#include "krun.h"
|
||||
#include "kstandarddirs.h"
|
||||
#include "kservice.h"
|
||||
#include "kautostart.h"
|
||||
#include "kdebug.h"
|
||||
|
||||
|
@ -227,12 +227,6 @@ int KLauncherAdaptor::kdeinit_exec_with_workdir(const QString &app, const QStrin
|
|||
return KLauncherAdaptor::NoError;
|
||||
}
|
||||
|
||||
void KLauncherAdaptor::reparseConfiguration()
|
||||
{
|
||||
kDebug() << "reparsing configuration";
|
||||
KProtocolManager::reparseConfiguration();
|
||||
}
|
||||
|
||||
void KLauncherAdaptor::setLaunchEnv(const QString &name, const QString &value)
|
||||
{
|
||||
kDebug() << "setting environment variable" << name << "to" << value;
|
||||
|
|
|
@ -51,7 +51,6 @@ public Q_SLOTS: // METHODS
|
|||
int kdeinit_exec(const QString &app, const QStringList &args, const QStringList &env, const QString& startup_id, const QDBusMessage &msg, QString &dbusServiceName, QString &error, qint64 &pid);
|
||||
int kdeinit_exec_wait(const QString &app, const QStringList &args, const QStringList &env, const QString& startup_id, const QDBusMessage &msg, QString &dbusServiceName, QString &error, qint64 &pid);
|
||||
int kdeinit_exec_with_workdir(const QString &app, const QStringList &args, const QString& workdir, const QStringList &env, const QString& startup_id, const QDBusMessage &msg, QString &dbusServiceName, QString &error, qint64 &pid);
|
||||
void reparseConfiguration();
|
||||
void setLaunchEnv(const QString &name, const QString &value);
|
||||
int start_service_by_desktop_name(const QString &serviceName, const QStringList &urls, const QStringList &envs, const QString &startup_id, bool blind, const QDBusMessage &msg, QString &dbusServiceName, QString &error, qint64 &pid);
|
||||
int start_service_by_desktop_path(const QString &serviceName, const QStringList &urls, const QStringList &envs, const QString &startup_id, bool blind, const QDBusMessage &msg, QString &dbusServiceName, QString &error, qint64 &pid);
|
||||
|
|
Loading…
Add table
Reference in a new issue