add readme/screenshot for 'QML Live Preview and Slime'; revisions

This commit is contained in:
pls.153 2022-02-25 15:09:02 +01:00
parent d7a999acdb
commit be2b4520d1
17 changed files with 107 additions and 32 deletions

View file

@ -260,7 +260,6 @@ cl_object from_qstring(const QString& s) {
cl_object from_qstringlist(const QStringList& l) {
cl_object l_list = ECL_NIL;
for (QString s : qAsConst(l)) {
l_list = CONS(from_qstring(s), l_list);
}