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 | @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 | > | 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 | { 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 | > | 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 | 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 | > | 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 | OF_ASSUME_NONNULL_BEGIN /** * @class OHGameControllerDirectionalPad OHGameControllerDirectionalPad.h * ObjFWHID/ObjFWID.h * | | | 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 * * @brief A directional pad or thumb stick of a game controller. */ OF_SUBCLASSING_RESTRICTED @interface OHGameControllerDirectionalPad: OHGameControllerElement { OHGameControllerAxis *_xAxis, *_yAxis; OHGameControllerButton *_up, *_down, *_left, *_right; } |
︙ | ︙ |
Modified src/runtime/exception.m from [a631c06b73] to [98da1df5a9].
︙ | ︙ | |||
34 35 36 37 38 39 40 | #endif #ifdef __SEH__ # include <windows.h> #endif #if defined(__SEH__) | | | 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__) # define PERSONALITY gnu_objc_personality #elif defined(__USING_SJLJ_EXCEPTIONS__) # define PERSONALITY __gnu_objc_personality_sj0 # define CXX_PERSONALITY_STR "__gxx_personality_sj0" # define _Unwind_RaiseException _Unwind_SjLj_RaiseException # define __builtin_eh_return_data_regno(i) (i) #else # define PERSONALITY __gnu_objc_personality_v0 |
︙ | ︙ |