diff options
Diffstat (limited to 'plugins/!Deprecated/Skype/src/skypekit/group.cpp')
-rw-r--r-- | plugins/!Deprecated/Skype/src/skypekit/group.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/plugins/!Deprecated/Skype/src/skypekit/group.cpp b/plugins/!Deprecated/Skype/src/skypekit/group.cpp new file mode 100644 index 0000000000..a75c43d371 --- /dev/null +++ b/plugins/!Deprecated/Skype/src/skypekit/group.cpp @@ -0,0 +1,13 @@ +#include "..\skype.h"
+#include "group.h"
+
+CContactGroup::CContactGroup(unsigned int oid, CSkypeProto* _ppro) :
+ ContactGroup(oid, _ppro),
+ proto(_ppro)
+{
+}
+
+void CContactGroup::OnChange(const ContactRef &contact)
+{
+ proto->OnContactListChanged(contact);
+}
\ No newline at end of file |