Just spent some time digging through this one for the widget and wanted to list the post title with the excerpt for context.
Here’s my solution, in case anyone needs it @line 20-25 in list_cat_posts_widget.php
foreach($lcp_catposts as $lcp_single):
$lcp_result.='<li><a href="'.get_permalink($lcp_single->ID).'">'.$lcp_single->post_title.'</a></li><li><p>'.$lcp_single->post_excerpt.'</p>';
endforeach;
$lcp_result .= "</ul>";
echo $lcp_result;
}
hth,
David