remove recursive call

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20159 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Peter Kümmel 2007-09-08 21:00:03 +00:00
parent 6db24496fd
commit e5cf6e8566

View File

@ -36,8 +36,7 @@ bool GuiToc::canOutline(int type) const
{
if (type < 0)
return false;
return canOutline(type);
return ControlToc::canOutline(type);
}