| 585 switch (button_type) { |
585 switch (button_type) { |
| 586 case 1: |
586 case 1: |
| 587 if (status == DOCKLET_STATUS_ONLINE_PENDING || status == DOCKLET_STATUS_AWAY_PENDING) { |
587 if (status == DOCKLET_STATUS_ONLINE_PENDING || status == DOCKLET_STATUS_AWAY_PENDING) { |
| 588 GList *l = get_pending_list(1); |
588 GList *l = get_pending_list(1); |
| 589 if (l != NULL) { |
589 if (l != NULL) { |
| 590 pidginconv_present_conversation((GaimConversation *)l->data); |
590 pidgin_conv_present_conversation((GaimConversation *)l->data); |
| 591 g_list_free(l); |
591 g_list_free(l); |
| 592 } |
592 } |
| 593 } else { |
593 } else { |
| 594 pidgin_blist_toggle_visibility(); |
594 pidgin_blist_toggle_visibility(); |
| 595 } |
595 } |