diff -r 9f3ec74d12c0 -r e75de8db4f2b pidgin/gtkrequest.c --- a/pidgin/gtkrequest.c Sun Oct 14 19:52:54 2007 +0000 +++ b/pidgin/gtkrequest.c Sun Oct 14 20:53:40 2007 +0000 @@ -106,16 +106,16 @@ if (convo) return GTK_WINDOW(convo->win->window); - if (strcmp(ui_hint, PURPLE_REQUEST_HINT_BLIST)) { + if (strcmp(ui_hint, PURPLE_REQUEST_UI_HINT_BLIST)) { GList *ll_toplevels = NULL; ll_toplevels = gtk_window_list_toplevels(); if (!(toplevel = find_toplevel(ll_toplevels, ui_hint))) { - if (!strcmp(ui_hint, PURPLE_REQUEST_HINT_REGISTER)) + if (!strcmp(ui_hint, PURPLE_REQUEST_UI_HINT_REGISTER)) toplevel = find_toplevel(ll_toplevels, "account"); else - if (!strcmp(ui_hint, PURPLE_REQUEST_HINT_XFER)) + if (!strcmp(ui_hint, PURPLE_REQUEST_UI_HINT_XFER)) toplevel = find_toplevel(ll_toplevels, "file transfer"); }