Differences From Artifact [85452b2a50]:
- File
src/hid/OHEmulatedGameControllerAxis.h
— part of check-in
[fa0f45f5f8]
at
2024-11-02 23:32:40
on branch trunk
— Fix minor space errors and typos
Found during review of the diff between last and current release. (user: js, size: 1276) [annotate] [blame] [check-ins using]
To Artifact [3afaf898c0]:
- File
src/hid/OHEmulatedGameControllerAxis.h
— part of check-in
[bc3a7747d9]
at
2024-11-03 15:46:25
on branch trunk
— ObjFWHID: Properly hide private methods
Also fixes compiling XInput with GCC. (user: js, size: 1303) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
25 26 27 28 29 30 31 | OF_SUBCLASSING_RESTRICTED @interface OHEmulatedGameControllerAxis: OHGameControllerAxis { OHGameControllerButton *_negativeButton, *_positiveButton; } | | | < | | | | 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | OF_SUBCLASSING_RESTRICTED @interface OHEmulatedGameControllerAxis: OHGameControllerAxis { OHGameControllerButton *_negativeButton, *_positiveButton; } - (instancetype)oh_initWithName: (OFString *)name analog: (bool)analog OF_UNAVAILABLE; - (instancetype) oh_initWithNegativeButton: (OHGameControllerButton *)negativeButton positiveButton: (OHGameControllerButton *)positiveButton OF_METHOD_FAMILY(init) OF_DESIGNATED_INITIALIZER; @end OF_ASSUME_NONNULL_END |