Update to recent ObjFW changes

This commit is contained in:
Jonathan Schleifer 2017-05-08 02:11:18 +02:00
parent ba805dab97
commit 1e5a65195e
No known key found for this signature in database
GPG key ID: 28D65178B37F33E3
28 changed files with 341 additions and 331 deletions

View file

@ -29,9 +29,9 @@ using ObjQt::toQt;
@implementation QtPaintDevice
@dynamic qObject;
- (QPaintDevice*)qPaintDevice
- (QPaintDevice *)qPaintDevice
{
return dynamic_cast<QPaintDevice*>([self qObject]);
return dynamic_cast<QPaintDevice *>([self qObject]);
}
- (int)colorCount
@ -76,7 +76,7 @@ using ObjQt::toQt;
return toQt(self)->logicalDpiY();
}
- (QPaintEngine*)paintEngine
- (QPaintEngine *)paintEngine
{
return toQt(self)->paintEngine();
}