summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swift/Controllers/PresenceNotifier.h')
-rw-r--r--Swift/Controllers/PresenceNotifier.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Swift/Controllers/PresenceNotifier.h b/Swift/Controllers/PresenceNotifier.h
index f5bf3d4..9b2d9de 100644
--- a/Swift/Controllers/PresenceNotifier.h
+++ b/Swift/Controllers/PresenceNotifier.h
@@ -20,12 +20,12 @@ namespace Swift {
class TimerFactory;
class StanzaChannel;
class MUCRegistry;
- class XMPPRoster;
+ class NickResolver;
class PresenceOracle;
class PresenceNotifier {
public:
- PresenceNotifier(StanzaChannel* stanzaChannel, Notifier* notifier, const MUCRegistry* mucRegistry, AvatarManager* avatarManager, const XMPPRoster* roster, const PresenceOracle* presenceOracle, TimerFactory* timerFactory);
+ PresenceNotifier(StanzaChannel* stanzaChannel, Notifier* notifier, const MUCRegistry* mucRegistry, AvatarManager* avatarManager, NickResolver* nickResolver, const PresenceOracle* presenceOracle, TimerFactory* timerFactory);
~PresenceNotifier();
void setInitialQuietPeriodMS(int ms);
@@ -48,7 +48,7 @@ namespace Swift {
Notifier* notifier;
const MUCRegistry* mucRegistry;
AvatarManager* avatarManager;
- const XMPPRoster* roster;
+ NickResolver* nickResolver;
const PresenceOracle* presenceOracle;
TimerFactory* timerFactory;
boost::shared_ptr<Timer> timer;