mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-30 08:00:51 +00:00
[qwaq] Quickly Workaround Access Qualifications
:)
This commit is contained in:
parent
c2138183dd
commit
bb25057feb
3 changed files with 3 additions and 0 deletions
|
@ -10,6 +10,7 @@
|
||||||
|
|
||||||
@interface Screen: Object <HandleEvent, Draw>
|
@interface Screen: Object <HandleEvent, Draw>
|
||||||
{
|
{
|
||||||
|
@public
|
||||||
Rect rect;
|
Rect rect;
|
||||||
Array *views;
|
Array *views;
|
||||||
Array *event_handlers;
|
Array *event_handlers;
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
|
|
||||||
@interface View: Object <Draw>
|
@interface View: Object <Draw>
|
||||||
{
|
{
|
||||||
|
@public
|
||||||
Rect rect;
|
Rect rect;
|
||||||
Rect absRect;
|
Rect absRect;
|
||||||
Point point; // can't be local :(
|
Point point; // can't be local :(
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
@interface Window: Object <Draw, TakeFocus>
|
@interface Window: Object <Draw, TakeFocus>
|
||||||
{
|
{
|
||||||
|
@public
|
||||||
Rect rect;
|
Rect rect;
|
||||||
Point point; // FIXME can't be local :(
|
Point point; // FIXME can't be local :(
|
||||||
Array *views;
|
Array *views;
|
||||||
|
|
Loading…
Reference in a new issue