mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
parent
d797c27b77
commit
9375b3ce72
2 changed files with 9 additions and 1 deletions
|
@ -70,6 +70,10 @@ KJobPrivate::KJobPrivate()
|
||||||
totalAmount.fill(0);
|
totalAmount.fill(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
KJobPrivate::~KJobPrivate()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
KJob::KJob(QObject *parent)
|
KJob::KJob(QObject *parent)
|
||||||
: QObject(parent), d_ptr(new KJobPrivate)
|
: QObject(parent), d_ptr(new KJobPrivate)
|
||||||
{
|
{
|
||||||
|
|
|
@ -30,10 +30,14 @@
|
||||||
|
|
||||||
class KJobUiDelegate;
|
class KJobUiDelegate;
|
||||||
|
|
||||||
class KJobPrivate
|
// This is a private class, but it's exported for
|
||||||
|
// KIO::Job's usage. Other Job classes in kdelibs may
|
||||||
|
// use it too.
|
||||||
|
class KDECORE_EXPORT KJobPrivate
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
KJobPrivate();
|
KJobPrivate();
|
||||||
|
virtual ~KJobPrivate();
|
||||||
|
|
||||||
KJob *q_ptr;
|
KJob *q_ptr;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue