Overview
Comment: | Rename -[handleNextEvent] -> -[handleEvents]. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
d49c4b05b045cb20dc368e1960cecdef |
User & Date: | js on 2012-08-26 13:42:00 |
Other Links: | manifest | tags |
Context
2012-08-26
| ||
14:04 | .gitignore: Add extra.mk. check-in: b6cd0e0efd user: js tags: trunk | |
13:42 | Rename -[handleNextEvent] -> -[handleEvents]. check-in: d49c4b05b0 user: js tags: trunk | |
12:34 | Reexport allegro_main on OS X. check-in: 2c9f1864d5 user: js tags: trunk | |
Changes
Modified src/OGKEventQueue.h from [b38728a4f6] to [d68b9f8b49].
︙ | |||
46 47 48 49 50 51 52 | 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | - + | ALLEGRO_EVENT_QUEUE *eventQueue; /* FIXME: Make this weak once there is support in ObjFW for it */ __unsafe_unretained id <OGKEventQueueDelegate> delegate; } @property (unsafe_unretained) id <OGKEventQueueDelegate> delegate; |
Modified src/OGKEventQueue.m from [84dbf1da64] to [9c06e7380d].
︙ | |||
49 50 51 52 53 54 55 | 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 | - + | - (void)dealloc { if (al_is_system_installed()) al_destroy_event_queue(eventQueue); } |
︙ |
Modified tests/TestMain.m from [28b7846922] to [00aa33180c].
︙ | |||
71 72 73 74 75 76 77 | 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | - + | of_log(@"Mouse button was released: %d (X=%.f Y=%.f WX=%.f WY=%.f)", event.button, event.cursor.x, event.cursor.y, event.wheel.x, event.wheel.y); } - (void)handleEvents { |
︙ |