Comment: | Make all properties nonatomic |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
b2aa2ffc1d674bf0fd94adf4a8fc3bbb |
User & Date: | js on 2017-05-14 00:50:18 |
Other Links: | manifest | tags |
2017-05-14
| ||
00:57 | Declare designated initializers check-in: 201f28b1d1 user: js tags: trunk | |
00:50 | Make all properties nonatomic check-in: b2aa2ffc1d user: js tags: trunk | |
2017-05-08
| ||
00:11 | Update to recent ObjFW changes check-in: 860515ac5a user: js tags: trunk | |
Modified src/QtCore/QtChildEvent.h from [c15e46d342] to [8aa26cef59].
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | - - - - - + + + + + | */ #import "QtEvent.h" @class QtObject; @interface QtChildEvent: QtEvent |
︙ |
Modified src/QtCore/QtCoreApplication.h from [96e4d8b08f] to [9a82637e75].
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | - - - - + + + + | */ #import "QtObject.h" #include <QCoreApplication> @interface QtCoreApplication: QtObject |
︙ |
Modified src/QtCore/QtEvent.h from [6e6d3c6c45] to [ff20e49325].
︙ | |||
28 29 30 31 32 33 34 | 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | - - - - + + + + | @interface QtEvent: OFObject <QtOwnershipManaging> { QEvent *_qEvent; bool _ownsEvent; } |
︙ |
Modified src/QtCore/QtObject.h from [ba457e33e9] to [d82bf2c426].
︙ | |||
31 32 33 34 35 36 37 | 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | - - - - + + + + | @interface QtObject: OFObject <QtOwnershipManaging> { QObject *_qObject; bool _ownsObject; } |
︙ |
Modified src/QtCore/QtThread.h from [43325aa0ce] to [fa16c3e3b9].
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | - - - - - - - - + + + + + + + + + | */ #import "QtObject.h" #include <QThread> @interface QtThread: QtObject |
︙ |
Modified src/QtGui/QtGUIApplication.h from [8f1cb558e8] to [3b927b4443].
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - - + + - + - - - - - + + + + + | */ #import "QtCoreApplication.h" #include <QGuiApplication> @interface QtGUIApplication: QtCoreApplication |
︙ |
Modified src/QtGui/QtPaintDevice.h from [ac14220fb1] to [8609205557].
︙ | |||
41 42 43 44 45 46 47 | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | - + | - (int)physicalDPIX; - (int)physicalDPIY; - (int)width; - (int)widthMM; @end @interface QtPaintDevice: OFObject <QtPaintDevice> |
︙ |
Modified src/QtWidgets/QtAbstractButton.h from [b2c785da49] to [c50d80772c].
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | - - - - - - - - - - - - + + + + + + + + + + + + | */ #import "QtWidget.h" #include <QAbstractButton> @interface QtAbstractButton: QtWidget |
︙ |
Modified src/QtWidgets/QtAction.h from [786b963eba] to [bd2dd3adc8].
︙ | |||
23 24 25 26 27 28 29 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + | #import "QtObject.h" #include <QAction> @class QtWidget; @interface QtAction: QtObject |
︙ |
Modified src/QtWidgets/QtApplication.h from [f8eefb765d] to [1c7a702202].
︙ | |||
21 22 23 24 25 26 27 | 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 | - - - - - - - - - - + + + + + + + + + + | */ #import "QtGUIApplication.h" #include <QApplication> @interface QtApplication: QtGUIApplication |
︙ |
Modified src/QtWidgets/QtPushButton.h from [6a47526835] to [dbffbb2ba9].
︙ | |||
23 24 25 26 27 28 29 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | - - - - - + + + + + | #import "QtAbstractButton.h" #include <QMenu> #include <QPushButton> @interface QtPushButton: QtAbstractButton |
︙ |
Modified src/QtWidgets/QtWidget.h from [5ea63b6548] to [5c1d80b6ca].
︙ | |||
24 25 26 27 28 29 30 | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + | #import "QtPaintDevice.h" #include <QWidget> @class QtAction; @interface QtWidget: QtObject |
︙ |