* GuiSymbols: implement Dialog::getLfun()

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@22840 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2008-02-07 15:41:56 +00:00
parent 8fd83ab2dc
commit c43fc027bc
2 changed files with 2 additions and 1 deletions

View File

@ -286,7 +286,7 @@ QString const GuiSymbols::getBlock(char_type c) const
void GuiSymbols::dispatchParams()
{
dispatch(FuncRequest(LFUN_SELF_INSERT, fromqstr(chosenLE->text())));
dispatch(FuncRequest(getLfun(), fromqstr(chosenLE->text())));
}

View File

@ -33,6 +33,7 @@ public:
void dispatchParams();
void enableView(bool enable);
bool isBufferDependent() const { return true; }
virtual kb_action getLfun() const { return LFUN_SELF_INSERT; }
//@}
public Q_SLOTS: