Differences From Artifact [32943bf9e4]:
- File src/QtCore/QtChildEvent.h — part of check-in [201f28b1d1] at 2017-05-14 00:57:09 on branch trunk — Declare designated initializers (user: js, size: 1965) [annotate] [blame] [check-ins using]
To Artifact [cc67226409]:
- File src/QtCore/QtChildEvent.h — part of check-in [6c336e34d7] at 2017-05-14 01:07:21 on branch trunk — Handle NULL / nil in toOF() / toQt() (user: js, size: 2006) [annotate] [blame] [check-ins using]
︙ | |||
38 39 40 41 42 43 44 45 46 47 48 49 50 51 | 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | + + + | @end namespace ObjQt { static OF_INLINE QtChildEvent * toOF(QChildEvent *qChildEvent) { if (qChildEvent == NULL) return nil; return [[[QtChildEvent alloc] initWithQChildEvent: qChildEvent] autorelease]; } static OF_INLINE QChildEvent * toQt(QtChildEvent *childEvent) { |
︙ |