ObjQt  Diff

Differences From Artifact [0228d0430e]:

To Artifact [7d8d2afd79]:


41
42
43
44
45
46
47










- (int)width;
- (int)widthMM;
@end

@interface QtPaintDevice: OFObject <QtPaintDevice>
@property (readonly) QObject *qObject;
@end

















>
>
>
>
>
>
>
>
>
>
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
- (int)width;
- (int)widthMM;
@end

@interface QtPaintDevice: OFObject <QtPaintDevice>
@property (readonly) QObject *qObject;
@end

namespace ObjQt {

static OF_INLINE QPaintDevice*
toQt(QtPaintDevice *paintDevice)
{
	return [paintDevice qPaintDevice];
}

}