update to new ngc_events (missing nix updates)
This commit is contained in:
parent
8dcede652e
commit
516b264a96
@ -5,14 +5,14 @@
|
|||||||
// TODO: add more events
|
// TODO: add more events
|
||||||
|
|
||||||
void AutoDirty::subscribe(void) {
|
void AutoDirty::subscribe(void) {
|
||||||
_tc.subscribe(this, Tox_Event::TOX_EVENT_SELF_CONNECTION_STATUS);
|
_tc.subscribe(this, Tox_Event_Type::TOX_EVENT_SELF_CONNECTION_STATUS);
|
||||||
_tc.subscribe(this, Tox_Event::TOX_EVENT_FRIEND_CONNECTION_STATUS);
|
_tc.subscribe(this, Tox_Event_Type::TOX_EVENT_FRIEND_CONNECTION_STATUS);
|
||||||
_tc.subscribe(this, Tox_Event::TOX_EVENT_FRIEND_REQUEST);
|
_tc.subscribe(this, Tox_Event_Type::TOX_EVENT_FRIEND_REQUEST);
|
||||||
_tc.subscribe(this, Tox_Event::TOX_EVENT_GROUP_INVITE);
|
_tc.subscribe(this, Tox_Event_Type::TOX_EVENT_GROUP_INVITE);
|
||||||
_tc.subscribe(this, Tox_Event::TOX_EVENT_GROUP_SELF_JOIN);
|
_tc.subscribe(this, Tox_Event_Type::TOX_EVENT_GROUP_SELF_JOIN);
|
||||||
_tc.subscribe(this, Tox_Event::TOX_EVENT_GROUP_PEER_JOIN);
|
_tc.subscribe(this, Tox_Event_Type::TOX_EVENT_GROUP_PEER_JOIN);
|
||||||
_tc.subscribe(this, Tox_Event::TOX_EVENT_GROUP_PEER_EXIT);
|
_tc.subscribe(this, Tox_Event_Type::TOX_EVENT_GROUP_PEER_EXIT);
|
||||||
_tc.subscribe(this, Tox_Event::TOX_EVENT_CONFERENCE_INVITE);
|
_tc.subscribe(this, Tox_Event_Type::TOX_EVENT_CONFERENCE_INVITE);
|
||||||
}
|
}
|
||||||
|
|
||||||
AutoDirty::AutoDirty(ToxClient& tc) : _tc(tc) {
|
AutoDirty::AutoDirty(ToxClient& tc) : _tc(tc) {
|
||||||
|
@ -13,16 +13,6 @@
|
|||||||
#include <map>
|
#include <map>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
//MessageCommandDispatcher::Command::Command(Command&& other) :
|
|
||||||
//m(std::move(other.m)),
|
|
||||||
//m_prefix(std::move(other.m_prefix)),
|
|
||||||
//command(std::move(other.command)),
|
|
||||||
//fn(std::move(other.fn)),
|
|
||||||
//help_text(std::move(other.help_text))
|
|
||||||
//{
|
|
||||||
//// is this really needed?
|
|
||||||
//}
|
|
||||||
|
|
||||||
MessageCommandDispatcher::MessageCommandDispatcher(
|
MessageCommandDispatcher::MessageCommandDispatcher(
|
||||||
Contact3Registry& cr,
|
Contact3Registry& cr,
|
||||||
RegistryMessageModel& rmm,
|
RegistryMessageModel& rmm,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user