diff options
Diffstat (limited to 'Swift/Controllers/RosterController.h')
| -rw-r--r-- | Swift/Controllers/RosterController.h | 7 | 
1 files changed, 1 insertions, 6 deletions
diff --git a/Swift/Controllers/RosterController.h b/Swift/Controllers/RosterController.h index e9561bb..eca4e33 100644 --- a/Swift/Controllers/RosterController.h +++ b/Swift/Controllers/RosterController.h @@ -11,7 +11,6 @@  #include "Swiften/Base/String.h"  #include "Swiften/Elements/Presence.h"  #include "Swiften/Elements/RosterPayload.h" -#include "Swiften/Roster/UserRosterAction.h"  #include "Swiften/Avatars/AvatarManager.h"  #include "Swift/Controllers/UIEvents/UIEvent.h" @@ -24,7 +23,6 @@ namespace Swift {  	class XMPPRoster;  	class MainWindow;  	class MainWindowFactory; -	class TreeWidgetFactory;  	class OfflineRosterFilter;  	class NickResolver;  	class PresenceOracle; @@ -35,13 +33,12 @@ namespace Swift {  	class RosterController {  		public: -			RosterController(const JID& jid, boost::shared_ptr<XMPPRoster> xmppRoster, AvatarManager* avatarManager, MainWindowFactory* mainWindowFactory, TreeWidgetFactory* treeWidgetFactory, NickResolver* nickResolver, PresenceOracle* presenceOracle, EventController* eventController, UIEventStream* uiEventStream, IQRouter* iqRouter_); +			RosterController(const JID& jid, boost::shared_ptr<XMPPRoster> xmppRoster, AvatarManager* avatarManager, MainWindowFactory* mainWindowFactory, NickResolver* nickResolver, PresenceOracle* presenceOracle, EventController* eventController, UIEventStream* uiEventStream, IQRouter* iqRouter_);  			~RosterController();  			void showRosterWindow();  			MainWindow* getWindow() {return mainWindow_;};  			void setAvatarManager(AvatarManager* avatarManager);  			void setNickResolver(NickResolver* nickResolver); -			boost::signal<void (const JID&)> onStartChatRequest;  			boost::signal<void (StatusShow::Type, const String&)> onChangeStatusRequest;  			boost::signal<void ()> onSignOutRequest;  			void handleAvatarChanged(const JID& jid, const String& hash); @@ -51,7 +48,6 @@ namespace Swift {  			void handleOnJIDRemoved(const JID &jid);  			void handleOnJIDUpdated(const JID &jid, const String& oldName, const std::vector<String> oldGroups);  			void handleStartChatRequest(const JID& contact); -			void handleUserAction(boost::shared_ptr<UserRosterAction> action);  			void handleChangeStatusRequest(StatusShow::Type show, const String &statusText);  			void handleShowOfflineToggled(bool state);  			void handleIncomingPresence(boost::shared_ptr<Presence> newPresence, boost::shared_ptr<Presence> oldPresence); @@ -63,7 +59,6 @@ namespace Swift {  			JID myJID_;  			boost::shared_ptr<XMPPRoster> xmppRoster_;  			MainWindowFactory* mainWindowFactory_; -			TreeWidgetFactory* treeWidgetFactory_;  			MainWindow* mainWindow_;  			Roster* roster_;  			OfflineRosterFilter* offlineFilter_;  | 
 Swift