# HG changeset patch # User Christian Hammond # Date 1054702441 0 # Node ID 37810936887e277ba35f821fc882d3d3d3508a2e # Parent 7cb2bbf03db5c4f340a15580c219bc12d7f27636 [gaim-migrate @ 6156] Fixed truncation on the tooltip for Trepia. committer: Tailor Script diff -r 7cb2bbf03db5 -r 37810936887e src/protocols/trepia/trepia.c --- a/src/protocols/trepia/trepia.c Wed Jun 04 04:52:45 2003 +0000 +++ b/src/protocols/trepia/trepia.c Wed Jun 04 04:54:01 2003 +0000 @@ -254,34 +254,11 @@ text = tmp2; } - c = text + strlen(text); - - if (*c == '\n') - *c = '\0'; + text[strlen(text) - 1] = '\0'; return text; } -static GList * -trepia_away_states(GaimConnection *gc) -{ - GList *m = NULL; - - return m; -} - -static GList * -trepia_actions(GaimConnection *gc) -{ - return NULL; -} - -static GList * -trepia_buddy_menu(GaimConnection *gc, const char *who) -{ - return NULL; -} - static void __free_parser_data(gpointer user_data) {