1 // Use QDict macros where they make sense
3 expression Obj, Key, E;
6 - qobject_ref(QOBJECT(E));
9 - qobject_unref(QOBJECT(E));
12 - qdict_put_obj(Obj, Key, QOBJECT(E));
13 + qdict_put(Obj, Key, E);
15 - qdict_put(Obj, Key, qnum_from_int(E));
16 + qdict_put_int(Obj, Key, E);
18 - qdict_put(Obj, Key, qbool_from_bool(E));
19 + qdict_put_bool(Obj, Key, E);
21 - qdict_put(Obj, Key, qstring_from_str(E));
22 + qdict_put_str(Obj, Key, E);
24 - qdict_put(Obj, Key, qnull());
25 + qdict_put_null(Obj, Key);
28 // Use QList macros where they make sense
33 - qlist_append_obj(Obj, QOBJECT(E));
34 + qlist_append(Obj, E);
36 - qlist_append(Obj, qnum_from_int(E));
37 + qlist_append_int(Obj, E);
39 - qlist_append(Obj, qbool_from_bool(E));
40 + qlist_append_bool(Obj, E);
42 - qlist_append(Obj, qstring_from_str(E));
43 + qlist_append_str(Obj, E);
45 - qlist_append(Obj, qnull());
46 + qlist_append_null(Obj);