Overview
Comment: | Fix minor space errors and typos
Found during review of the diff between last and current release. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
fa0f45f5f8f5b9de30044c9f16b69026 |
User & Date: | js on 2024-11-02 23:32:40 |
Other Links: | manifest | tags |
Context
2024-11-02
| ||
23:33 | Make sure OF_VISIBILITY_HIDDEN is always defined check-in: fabf1c6984 user: js tags: trunk | |
23:32 | Fix minor space errors and typos check-in: fa0f45f5f8 user: js tags: trunk | |
23:20 | Fix compiling tests on Haiku check-in: f0be46cc5c user: js tags: trunk | |
Changes
Modified src/hid/OHEmulatedGameControllerAxis.h from [d5464e93fd] to [85452b2a50].
︙ | |||
27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + | @interface OHEmulatedGameControllerAxis: OHGameControllerAxis { OHGameControllerButton *_negativeButton, *_positiveButton; } - (instancetype)initWithName: (OFString *)name analog: (bool)analog OF_UNAVAILABLE; - (instancetype) initWithNegativeButton: (OHGameControllerButton *)negativeButton positiveButton: (OHGameControllerButton *)positiveButton OF_DESIGNATED_INITIALIZER; @end OF_ASSUME_NONNULL_END |
Modified src/hid/OHEmulatedGameControllerButton.h from [52ccdea95f] to [6b07ca8208].
︙ | |||
28 29 30 31 32 33 34 35 36 37 38 39 | 28 29 30 31 32 33 34 35 36 37 38 39 40 | + | { OHGameControllerAxis *_axis; bool _positive; } - (instancetype)initWithName: (OFString *)name analog: (bool)analog OF_UNAVAILABLE; - (instancetype)initWithAxis: (OHGameControllerAxis *)axis positive: (bool)positive OF_DESIGNATED_INITIALIZER; @end OF_ASSUME_NONNULL_END |
Modified src/hid/OHEmulatedGameControllerTriggerButton.h from [ca69b5094c] to [bebf722596].
︙ | |||
29 30 31 32 33 34 35 36 37 38 39 40 41 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | + | OHGameControllerAxis *_axis; } @property (readonly, nonatomic) OHGameControllerAxis *axis; - (instancetype)initWithName: (OFString *)name analog: (bool)analog OF_UNAVAILABLE; - (instancetype)initWithName: (OFString *)name axis: (OHGameControllerAxis *)axis OF_DESIGNATED_INITIALIZER; @end OF_ASSUME_NONNULL_END |
Modified src/hid/OHGameControllerDirectionalPad.h from [9f3d209aa4] to [cc2ee6f3bb].
︙ | |||
23 24 25 26 27 28 29 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | - + | OF_ASSUME_NONNULL_BEGIN /** * @class OHGameControllerDirectionalPad OHGameControllerDirectionalPad.h * ObjFWHID/ObjFWID.h * |
︙ |
Modified src/runtime/exception.m from [a631c06b73] to [98da1df5a9].
︙ | |||
34 35 36 37 38 39 40 | 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | - + | #endif #ifdef __SEH__ # include <windows.h> #endif #if defined(__SEH__) |
︙ |