Revert "kdecore: unexport KJobPrivate"

This reverts commit d797c27b77.
This commit is contained in:
Ivailo Monev 2024-05-05 04:44:29 +03:00
parent d797c27b77
commit 9375b3ce72
2 changed files with 9 additions and 1 deletions

View file

@ -70,6 +70,10 @@ KJobPrivate::KJobPrivate()
totalAmount.fill(0);
}
KJobPrivate::~KJobPrivate()
{
}
KJob::KJob(QObject *parent)
: QObject(parent), d_ptr(new KJobPrivate)
{

View file

@ -30,10 +30,14 @@
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:
KJobPrivate();
virtual ~KJobPrivate();
KJob *q_ptr;