include/ui/console.h: Delete is_surface_bgr()
[qemu/ar7.git] / scripts / coccinelle / qobject.cocci
blob9fee9c0d9abbb093745a43032b27e304772d7d20
1 // Use QDict macros where they make sense
2 @@
3 expression Obj, Key, E;
4 @@
6 - qobject_ref(QOBJECT(E));
7 + qobject_ref(E);
9 - qobject_unref(QOBJECT(E));
10 + qobject_unref(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
30 expression Obj, E;
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);