mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-14 17:01:22 +00:00
8a7fbdfc9f
It currently dies when single stepping or exiting due to EditBuffer's retain count not getting incremented when initialized. This is because EditBuffer is initialized in C and thus does not call Object's -init.
21 lines
349 B
Objective-C
21 lines
349 B
Objective-C
#ifndef __qwaq_ui_proxyview_h
|
|
#define __qwaq_ui_proxyview_h
|
|
|
|
#include "ui/view.h"
|
|
|
|
@class Group;
|
|
|
|
@interface ProxyView : Object
|
|
{
|
|
View *view;
|
|
Group *owner;
|
|
}
|
|
+(ProxyView *)withView:(View *)view;
|
|
-initWithView:(View *)view;
|
|
-setView:(View *)view;
|
|
@end
|
|
|
|
@interface ProxyView (View) <View, TextContext>
|
|
@end
|
|
|
|
#endif//__qwaq_ui_proxyview_h
|