Mercurial > pidgin.yaz
diff pidgin/plugins/gevolution/gevolution.c @ 25416:6e1967b0f90b
Change "screen name" to "username" or "buddy name" in a whole bunch of
places in the code. I've been using the definitions from the jabber
specs, where "user" is me and "buddy" is someone on my buddy list.
| author | Mark Doliner <mark@kingant.net> |
|---|---|
| date | Mon, 26 Jan 2009 09:12:04 +0000 |
| parents | e0bcb8cfda74 |
| children | c952aa75df18 |
line wrap: on
line diff
--- a/pidgin/plugins/gevolution/gevolution.c Mon Jan 26 06:44:00 2009 +0000 +++ b/pidgin/plugins/gevolution/gevolution.c Mon Jan 26 09:12:04 2009 +0000 @@ -52,7 +52,7 @@ { COLUMN_AUTOADD, COLUMN_ICON, - COLUMN_SCREENNAME, + COLUMN_USERNAME, COLUMN_DATA, NUM_COLUMNS }; @@ -463,11 +463,11 @@ gtk_tree_view_column_add_attribute(column, renderer, "pixbuf", COLUMN_ICON); - /* Screenname */ + /* Username */ renderer = gtk_cell_renderer_text_new(); gtk_tree_view_column_pack_start(column, renderer, TRUE); gtk_tree_view_column_add_attribute(column, renderer, - "text", COLUMN_SCREENNAME); + "text", COLUMN_USERNAME); /* Populate */ @@ -489,7 +489,7 @@ purple_account_get_bool(account, "gevo-autoadd", FALSE), COLUMN_ICON, pixbuf, - COLUMN_SCREENNAME, + COLUMN_USERNAME, purple_account_get_username(account), COLUMN_DATA, account, -1);
