Differences From Artifact [189b609e87]:
- File src/QtGui/QtGUIApplication.h — part of check-in [201f28b1d1] at 2017-05-14 00:57:09 on branch trunk — Declare designated initializers (user: js, size: 2353) [annotate] [blame] [check-ins using]
To Artifact [205e5d23cc]:
- File src/QtGui/QtGUIApplication.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: 2398) [annotate] [blame] [check-ins using]
︙ | |||
47 48 49 50 51 52 53 54 55 56 57 58 59 60 | 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | + + + | @end namespace ObjQt { static OF_INLINE QtGUIApplication * toOF(QGuiApplication *qGuiApplication) { if (qGuiApplication == NULL) return nil; return [[[QtGUIApplication alloc] initWithQGuiApplication: qGuiApplication] autorelease]; } static OF_INLINE QGuiApplication * toQt(QtGUIApplication *GUIApplication) { |
︙ |