This is what you do to show BuddyPress avatars in Q2A
1) Install the BuddyPress integration plugin by NoahY - this should take care of avatars in posts
2) In qa-external-wp-users.php under line 160 replace
return qa_get_gravatar_html($qa_cache_wp_user_emails[$userid], $size);
with
if (isset($qa_cache_wp_user_emails[$userid]))
$user_info = get_userdata($userid);
$email = $user_info->user_email;
$avatar = bp_core_fetch_avatar( array( 'item_id' => $userid, 'width' => $size, 'height' => $size, 'email' => $email ) );
return $avatar;