aboutsummaryrefslogtreecommitdiff
path: root/src/ui/members.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui/members.h')
-rw-r--r--src/ui/members.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ui/members.h b/src/ui/members.h
index fc924a2..6e8711b 100644
--- a/src/ui/members.h
+++ b/src/ui/members.h
@@ -37,7 +37,7 @@ struct MESSENGER_Application;
37 37
38typedef struct UI_MEMBERS_List 38typedef struct UI_MEMBERS_List
39{ 39{
40 const struct GNUNET_CHAT_Contact *contact; 40 struct GNUNET_CHAT_Contact *contact;
41 41
42 struct UI_MEMBERS_List *prev; 42 struct UI_MEMBERS_List *prev;
43 struct UI_MEMBERS_List *next; 43 struct UI_MEMBERS_List *next;
@@ -54,7 +54,7 @@ typedef struct UI_MEMBERS_Handle
54 int line_offset; 54 int line_offset;
55 int line_selected; 55 int line_selected;
56 56
57 const struct GNUNET_CHAT_Contact *selected; 57 struct GNUNET_CHAT_Contact *selected;
58} UI_MEMBERS_Handle; 58} UI_MEMBERS_Handle;
59 59
60#define UI_MEMBERS_COLS_MIN 30 60#define UI_MEMBERS_COLS_MIN 30
@@ -72,7 +72,7 @@ members_clear(UI_MEMBERS_Handle *members);
72 72
73bool 73bool
74members_add(UI_MEMBERS_Handle *members, 74members_add(UI_MEMBERS_Handle *members,
75 const struct GNUNET_CHAT_Contact *contact); 75 struct GNUNET_CHAT_Contact *contact);
76 76
77void 77void
78members_remove(UI_MEMBERS_Handle *members, 78members_remove(UI_MEMBERS_Handle *members,