diff --git a/include/transport/UserRegistration.h b/include/transport/UserRegistration.h index f95d0faecf71f5ce1cc1505066cd025e84e23c0f..87c2dc62d3ff74e9601dd6f6320c15daa296b8d6 100644 --- a/include/transport/UserRegistration.h +++ b/include/transport/UserRegistration.h @@ -23,8 +23,8 @@ #include "Swiften/Queries/Responder.h" #include "Swiften/Elements/InBandRegistrationPayload.h" #include "Swiften/Elements/RosterPayload.h" -#include #include +#include "Swiften/SwiftenCompat.h" #define HAVE_SWIFTEN_3 (SWIFTEN_VERSION >= 0x030000) namespace Transport { @@ -71,15 +71,15 @@ class UserRegistration { /// Called when new user has been registered. /// \param userInfo UserInfo struct with informations about user - boost::signal onUserRegistered; + SWIFTEN_SIGNAL_NAMESPACE::signal onUserRegistered; /// Called when user has been unregistered. /// \param userInfo UserInfo struct with informations about user - boost::signal onUserUnregistered; + SWIFTEN_SIGNAL_NAMESPACE::signal onUserUnregistered; /// Called when user's registration has been updated. /// \param userInfo UserInfo struct with informations about user - boost::signal onUserUpdated; + SWIFTEN_SIGNAL_NAMESPACE::signal onUserUpdated; private: Component *m_component;