17 QTextCursor cursor = editor->textCursor();
18 QTextList *list = cursor.currentList();
21 QTextListFormat listFormat;
23 listFormat = list->format();
24 listFormat.setIndent(listFormat.indent() + 1);
27 listFormat.setStyle(QTextListFormat::ListDisc);
28 cursor.insertList(listFormat);