]> git.lyx.org Git - lyx.git/blob - src/insets/insetlot.C
Some more changes for updating text-insets.
[lyx.git] / src / insets / insetlot.C
1 #include <config.h>
2
3 #ifdef __GNUG__
4 #pragma implementation
5 #endif
6
7 #include "insetlot.h"
8 #include "BufferView.h"
9 #include "LyXView.h"
10 #include "lyxfunc.h"
11 #include "commandtags.h"
12
13
14 string InsetLOT::getScreenLabel() const 
15 {
16         return _("List of Tables");
17 }
18
19 void InsetLOT::Edit(BufferView * bv, int, int, unsigned int)
20 {
21         bv->owner()->getLyXFunc()->Dispatch(LFUN_LOTVIEW);
22 }