iOS: Move UIView helpers to once place

Change-Id: I9e20d23ad813503ea5c6bef3303ebc0f6b9e99cd
Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
This commit is contained in:
Tor Arne Vestbø 2014-10-15 12:00:56 +02:00
parent cc73cc9a4c
commit cc1058a278
2 changed files with 3 additions and 6 deletions

View File

@ -42,11 +42,6 @@
class QIOSContext;
class QIOSWindow;
@interface UIView (QIOS)
@property(readonly) QWindow *qwindow;
@property(readonly) UIViewController *viewController;
@end
QT_BEGIN_NAMESPACE
@class QUIView;

View File

@ -62,7 +62,9 @@ class QIOSWindow;
- (void)clearAccessibleCache;
@end
@interface QUIView (QtHelpers)
@interface UIView (QtHelpers)
- (QWindow *)qwindow;
- (UIViewController *)viewController;
- (QIOSViewController*)qtViewController;
@end