# HG changeset patch # User Christian Hammond # Date 1055708632 0 # Node ID 74e273e22f94a1d47399837440598d73b6c29ecf # Parent faf4363e56a8e49422ae1f5175888d5219c07750 [gaim-migrate @ 6333] Fixed a warning when moving a conversation to the last position in a window. committer: Tailor Script diff -r faf4363e56a8 -r 74e273e22f94 src/gtkconv.c --- a/src/gtkconv.c Sun Jun 15 20:13:48 2003 +0000 +++ b/src/gtkconv.c Sun Jun 15 20:23:52 2003 +0000 @@ -1725,7 +1725,8 @@ pos = gaim_window_add_conversation(dest_win, conv); - gaim_window_move_conversation(dest_win, pos, dest_page_num); + if (pos != dest_page_num) + gaim_window_move_conversation(dest_win, pos, dest_page_num); gaim_window_switch_conversation(dest_win, dest_page_num); }