[qwaq] Quickly Workaround Access Qualifications

:)
This commit is contained in:
Bill Currie 2020-03-03 10:46:28 +09:00
parent c2138183dd
commit bb25057feb
3 changed files with 3 additions and 0 deletions

View file

@ -10,6 +10,7 @@
@interface Screen: Object <HandleEvent, Draw>
{
@public
Rect rect;
Array *views;
Array *event_handlers;

View file

@ -9,6 +9,7 @@
@interface View: Object <Draw>
{
@public
Rect rect;
Rect absRect;
Point point; // can't be local :(

View file

@ -11,6 +11,7 @@
@interface Window: Object <Draw, TakeFocus>
{
@public
Rect rect;
Point point; // FIXME can't be local :(
Array *views;