[Telepathy-commits] [telepathy-qt4/master] Moved ConnectionManager::Private::PendingReady outside class definition.
Andre Moreira Magalhaes (andrunko)
andre.magalhaes at collabora.co.uk
Tue Jan 6 11:25:53 PST 2009
---
TelepathyQt4/Client/connection-manager-internal.h | 18 ++++++++++--------
1 files changed, 10 insertions(+), 8 deletions(-)
diff --git a/TelepathyQt4/Client/connection-manager-internal.h b/TelepathyQt4/Client/connection-manager-internal.h
index f83b20d..f971cbb 100644
--- a/TelepathyQt4/Client/connection-manager-internal.h
+++ b/TelepathyQt4/Client/connection-manager-internal.h
@@ -62,17 +62,19 @@ struct ConnectionManager::Private
void callGetParameters();
void callListProtocols();
- class PendingReady : public PendingOperation
- {
- // ConnectionManager is a friend so it can call finished() etc.
- friend class ConnectionManager;
- public:
- PendingReady(ConnectionManager *parent);
- };
-
+ class PendingReady;
PendingReady *pendingReady;
};
+class ConnectionManager::Private::PendingReady : public PendingOperation
+{
+ // ConnectionManager is a friend so it can call finished() etc.
+ friend class ConnectionManager;
+
+public:
+ PendingReady(ConnectionManager *parent);
+};
+
class ConnectionManagerPendingNames : public PendingStringList
{
Q_OBJECT
--
1.5.6.5
More information about the Telepathy-commits
mailing list