mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-25 03:12:49 +00:00
14 lines
368 B
C++
14 lines
368 B
C++
|
|
{
|
|
ModelInsertCommand insertCommand(&rootModel);
|
|
insertCommand.setAncestorRowNumbers({{ event.rowAncestors }});
|
|
insertCommand.setStartRow({{ event.start }});
|
|
{% if event.interpretString %}
|
|
insertCommand.interpret(
|
|
{{ event.interpretString }}
|
|
);
|
|
{% else %}
|
|
insertCommand.setEnd({{ event.end }});
|
|
{% endif %}
|
|
insertCommand.doCommand();
|
|
}
|