There is one further thing that you might try, depending on whether you are using Joomla 1.5 or 1.6. For Joomla 1.5 you need to edit the module file 'includes/modFeaturedItemsSlideshowJContentHelper.php', line 349, change it from
$link = ContentHelperRoute::getArticleRoute($row->slug, $row->catslug, $row->sectionid);
to
$link = 'index.php?option=com_content&view=article&id='.$row->id.'&catid='.$row->catid;
If you are using Joomla 1.6 then the file you need to edit is 'modFeaturedItemsSlideshowJ16ContentHelper.php', and the line you need to change is line 344. This substitutes a more simplistic version of the URL, it is possible that your SEF extension may find it easier to understand.
However you will do much better to try and make the SEF URLS work properly, as you may find that you get other unexpected errors on your site otherwise.