1
0
mirror of https://github.com/Tha14/toxic.git synced 2025-06-30 02:46:45 +02:00

rm unused argument for sort func

This commit is contained in:
Jfreegman
2014-03-13 23:30:44 -04:00
parent ac82961bea
commit d8d198c81c
5 changed files with 24 additions and 17 deletions

View File

@ -38,6 +38,7 @@ typedef struct {
bool online;
bool is_typing;
bool logging_on; /* saves preference for friend irrespective of chat windows */
uint64_t last_online;
TOX_USERSTATUS status;
struct FileReceiver file_receiver;
} ToxicFriend;
@ -54,6 +55,6 @@ int get_friendnum(uint8_t *name);
void friendlist_onFriendAdded(ToxWindow *self, Tox *m, int num, bool sort);
/* sorts friendlist_index first by connection status then alphabetically */
void sort_friendlist_index(Tox *m);
void sort_friendlist_index(void);
#endif /* end of include guard: FRIENDLIST_H_53I41IM */