mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
kdecore: remove unused KJobTrackerInterface member
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
0254e23e32
commit
5de263ddca
2 changed files with 2 additions and 19 deletions
|
@ -21,26 +21,13 @@
|
|||
|
||||
#include "kjob.h"
|
||||
|
||||
class KJobTrackerInterface::Private
|
||||
{
|
||||
public:
|
||||
Private(KJobTrackerInterface *interface) : q(interface)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
KJobTrackerInterface *const q;
|
||||
};
|
||||
|
||||
KJobTrackerInterface::KJobTrackerInterface(QObject *parent)
|
||||
: QObject(parent), d(new Private(this))
|
||||
: QObject(parent)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
KJobTrackerInterface::~KJobTrackerInterface()
|
||||
{
|
||||
delete d;
|
||||
}
|
||||
|
||||
void KJobTrackerInterface::registerJob(KJob *job)
|
||||
|
|
|
@ -154,10 +154,6 @@ protected Q_SLOTS:
|
|||
* @param value the current speed of the job
|
||||
*/
|
||||
virtual void speed(KJob *job, unsigned long value);
|
||||
|
||||
private:
|
||||
class Private;
|
||||
Private *const d;
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif // KJOBTRACKERINTERFACE_H
|
||||
|
|
Loading…
Add table
Reference in a new issue