mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
LFUN_INFO_INSERT: avoid static_cast.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25155 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
81cc98a500
commit
b4213b9fe5
@ -1338,18 +1338,18 @@ void Text::dispatch(Cursor & cur, FuncRequest & cmd)
|
||||
}
|
||||
|
||||
case LFUN_INFO_INSERT: {
|
||||
Inset * inset = createInset(cur.bv().buffer(), cmd);
|
||||
if (!inset)
|
||||
break;
|
||||
// if an empty inset is created (cmd.argument() is empty)
|
||||
// use current selection as parameter.
|
||||
Inset * inset;
|
||||
if (cmd.argument().empty() && cur.selection()) {
|
||||
// use selected text as info to avoid a separate UI
|
||||
// if command argument is empty use current selection as parameter.
|
||||
docstring ds = cur.selectionAsString(false);
|
||||
cutSelection(cur, true, false);
|
||||
static_cast<InsetInfo *>(inset)->setInfo(to_utf8(ds));
|
||||
static_cast<InsetInfo *>(inset)->updateInfo();
|
||||
FuncRequest cmd0(cmd, ds);
|
||||
inset = createInset(cur.bv().buffer(), cmd0);
|
||||
} else {
|
||||
inset = createInset(cur.bv().buffer(), cmd);
|
||||
}
|
||||
if (!inset)
|
||||
break;
|
||||
insertInset(cur, inset);
|
||||
cur.posForward();
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user