[qwaq] Remove useless protocols

The HandleEvent protocols wound up being unnecessary.
This commit is contained in:
Bill Currie 2020-03-24 13:27:35 +09:00
parent 1d6843d7f0
commit 47b8f8dd6a

View file

@ -67,20 +67,4 @@ typedef struct qwaq_event_s {
};
} qwaq_event_t;
#ifdef __QFCC__ // don't want C gcc to see this :)
@protocol HandleEvent
-handleEvent: (struct qwaq_event_s *) event;
@end
@protocol HandleFocusedEvent <HandleEvent>
-takeFocus;
-loseFocus;
@end
@protocol HandleMouseEvent <HandleEvent>
-(struct Rect_s *)getRect;
@end
#endif
#endif//__qwaq_event_h