lyx_mirror/src/insets/insetlof.C
Lars Gullik Bjønnes 556970623c some sun compile fixes the need clipboard code patch from Dekel ans some other fixes
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@753 a592a061-630c-0410-9148-cb99ea01b6c8
2000-05-20 21:37:05 +00:00

22 lines
375 B
C

#include <config.h>
#ifdef __GNUG__
#pragma implementation
#endif
#include "insetlof.h"
#include "BufferView.h"
#include "LyXView.h"
#include "lyxfunc.h"
#include "commandtags.h"
string InsetLOF::getScreenLabel() const
{
return _("List of Figures");
}
void InsetLOF::Edit(BufferView * bv, int, int, unsigned int)
{
bv->owner()->getLyXFunc()->Dispatch(LFUN_LOFVIEW);
}