summaryrefslogtreecommitdiffstats
path: root/examples/testapp/updateagent.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/testapp/updateagent.h')
-rw-r--r--examples/testapp/updateagent.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/testapp/updateagent.h b/examples/testapp/updateagent.h
index 7f7840739..b4b245586 100644
--- a/examples/testapp/updateagent.h
+++ b/examples/testapp/updateagent.h
@@ -27,23 +27,23 @@
#define UPDATEAGENT_H
#include <QtCore/QObject>
-#include <KDToolsCore/pimpl_ptr.h>
class UpdateAgent : public QObject
{
Q_OBJECT
public:
- explicit UpdateAgent( QObject* parent = 0 );
+ explicit UpdateAgent(QObject *parent = 0);
~UpdateAgent();
Q_SIGNALS:
void updatesAvailable();
private:
- Q_PRIVATE_SLOT( d, void maybeCheck() );
+ Q_PRIVATE_SLOT(d, void maybeCheck());
+private:
class Private;
- kdtools::pimpl_ptr< Private > d;
+ Private *const d;
};
#endif