Added Email & UpdateSettings flags

Keep code from failing if _LinkLocations is null
Add PromsPrinter to constructor for VlnPageHelper
This commit is contained in:
Rich
2012-05-10 15:44:27 +00:00
parent 1c183dc7ae
commit b0a8ee1625
3 changed files with 14 additions and 1 deletions

View File

@@ -2244,6 +2244,7 @@ namespace Volian.Controls.Library
private LinkLocation FindBetweenLinks(int start)
{
DebugPrint("FL----------------Between>");
if (_LinkLocations == null) return null;
foreach (LinkLocation ll in _LinkLocations)
if (ll.Start == start && ll.StartsBetween)
return ll;