mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-24 02:42:48 +00:00
kdecore: remove unused and private KToolInvocation member
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
1a06d034e0
commit
6d54b1e31b
2 changed files with 7 additions and 9 deletions
|
@ -43,7 +43,8 @@ KToolInvocation *KToolInvocation::self()
|
|||
return s_self;
|
||||
}
|
||||
|
||||
KToolInvocation::KToolInvocation() : QObject(0), d(0)
|
||||
KToolInvocation::KToolInvocation()
|
||||
: QObject(0)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
|
@ -31,7 +31,6 @@
|
|||
|
||||
class OrgKdeKLauncherInterface;
|
||||
class KUrl;
|
||||
class KToolInvocationPrivate;
|
||||
|
||||
/**
|
||||
* KToolInvocation: for starting other programs
|
||||
|
@ -71,11 +70,11 @@ class KDECORE_EXPORT KToolInvocation : public QObject
|
|||
|
||||
Q_OBJECT
|
||||
private:
|
||||
KToolInvocation();
|
||||
KToolInvocation();
|
||||
public:
|
||||
// @internal
|
||||
~KToolInvocation();
|
||||
static KToolInvocation *self();
|
||||
// @internal
|
||||
~KToolInvocation();
|
||||
static KToolInvocation *self();
|
||||
|
||||
public Q_SLOTS:
|
||||
/**
|
||||
|
@ -93,7 +92,7 @@ public Q_SLOTS:
|
|||
|
||||
static void invokeHelp( const QString& anchor = QString(),
|
||||
const QString& appname = QString(),
|
||||
const QByteArray& startup_id = QByteArray());
|
||||
const QByteArray& startup_id = QByteArray());
|
||||
|
||||
/**
|
||||
* Convenience method; invokes the standard email application.
|
||||
|
@ -334,8 +333,6 @@ private:
|
|||
const QByteArray& startup_id, bool noWait,
|
||||
const QString& workdir = QString());
|
||||
static bool isMainThreadActive(QString* error = 0);
|
||||
|
||||
KToolInvocationPrivate * const d;
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue