Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EionRobb/skype4pidgin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Kamil Kozar <dkk089@gmail.com>2018-03-13 20:43:14 +0300
committerDaniel Kamil Kozar <dkk089@gmail.com>2018-03-13 20:43:14 +0300
commit816aaddea4493b8f8708e3bf5aa68fba3c9daef7 (patch)
treee16dcb011119f0ef3e4964f4bc5d896aa2eb27aa /skypeweb/libskypeweb.c
parent9db6c43619a5ec9e8d65cd1f20f2016c66fe53e1 (diff)
Implement support for contact suggestions
Diffstat (limited to 'skypeweb/libskypeweb.c')
-rw-r--r--skypeweb/libskypeweb.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/skypeweb/libskypeweb.c b/skypeweb/libskypeweb.c
index 8392073..bb43b96 100644
--- a/skypeweb/libskypeweb.c
+++ b/skypeweb/libskypeweb.c
@@ -730,6 +730,9 @@ PurpleConnection *pc
act = purple_protocol_action_new(_("Search for friends..."), skypeweb_search_users);
m = g_list_append(m, act);
+
+ act = purple_protocol_action_new(_("People you might know..."), skypeweb_contact_suggestions);
+ m = g_list_append(m, act);
return m;
}