Supplementary patch to bug 227651 bulletproofing in case the overlaid window does not have a component bar r=timeless sr=bryner a=asa

git-svn-id: svn://10.0.0.236/trunk@150270 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
neil%parkwaycc.co.uk
2003-12-12 23:44:07 +00:00
parent 91240484ac
commit 830de9334a

View File

@@ -48,8 +48,10 @@ function OtherTasksOnLoad()
var appFile = getAppFile("task.calendar.location");
if (appFile && !haveInternalCalendar())
{
otherCalTaskBarIcon.hidden = false;
otherCalMenuItem.hidden = false;
if (otherCalTaskBarIcon)
otherCalTaskBarIcon.hidden = false;
if (otherCalMenuItem)
otherCalMenuItem.hidden = false;
}
}