| 104 | // Widget to path conversion and back |
| 105 | |
| 106 | inline bool |
| 107 | is_widget (QObject *o) |
| 108 | { |
| 109 | return (dynamic_cast<const QDialog *> (o) != 0 || dynamic_cast<const QMainWindow *> (o) != 0 || dynamic_cast<const QWidget *> (o) != 0); |
| 110 | } |
| 111 | |
| 112 | static void |
| 113 | dump_children (QObject *obj, int level = 0) |
no outgoing calls
no test coverage detected