Tue, 09 Jul 2013 15:48:17 +0530
Renamed buddy list functions to more appropriate/simler names.
* Replaced purple_blist_update_node_icon() with purple_blist_node_update()
* Replaced purple_blist_update_buddy_status() with purple_buddy_update_status()
* Replaced purple_blist_rename_buddy() with purple_buddy_set_name()
* Replaced purple_blist_alias_contact() with purple_contact_set_alias()
* Replaced purple_blist_alias_chat() with purple_chat_set_alias()
* Replaced purple_blist_alias_buddy() with purple_buddy_set_local_alias()
* Replaced purple_blist_server_alias_buddy() with purple_buddy_set_server_alias()
* Replaced purple_blist_rename_group() with purple_group_set_name()
* Replaced purple_blist_merge_contact() with purple_contact_merge()
* Replaced purple_find_buddy_in_group() with purple_blist_find_buddy_in_group()
* Replaced purple_find_buddy() with purple_blist_find_buddy()
* Replaced purple_find_buddies() with purple_blist_find_buddies()
* Replaced purple_find_group() with purple_blist_find_group()
|
27267
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
1 | /* Pidgin |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
2 | * |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
3 | * Pidgin is the legal property of its developers, whose names are too numerous |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
4 | * to list here. Please refer to the COPYRIGHT file distributed with this |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
5 | * source distribution. |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
6 | * |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
7 | * This program is free software; you can redistribute it and/or modify |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
8 | * it under the terms of the GNU General Public License as published by |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
9 | * the Free Software Foundation; either version 2 of the License, or |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
10 | * (at your option) any later version. |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
11 | * |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
12 | * This program is distributed in the hope that it will be useful, |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
15 | * GNU General Public License for more details. |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
16 | * |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
17 | * You should have received a copy of the GNU General Public License |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
18 | * along with this program; if not, write to the Free Software |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
20 | */ |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
21 | |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
22 | #ifndef _THEMEEDIT_ICON_H_ |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
23 | #define _THEMEEDIT_ICON_H_ |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
24 | |
|
26869
210aa82531fe
Fix two warnings in the theme editor plugin
Paul Aurich <darkrain42@pidgin.im>
parents:
26811
diff
changeset
|
25 | void pidgin_icon_theme_edit(PurplePluginAction *); |
|
26811
72045103fad1
A status-icon theme editor.
Sadrul Habib Chowdhury <sadrul@pidgin.im>
parents:
diff
changeset
|
26 | |
|
27267
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
27 | #endif |
|
5e5f4b6d880b
This file is a lacking a certain something...
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
26869
diff
changeset
|
28 |