summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/ios/qioswindow.h
diff options
context:
space:
mode:
authorTor Arne Vestbø <tor.arne.vestbo@digia.com>2012-11-04 17:19:09 +0100
committerTor Arne Vestbø <tor.arne.vestbo@digia.com>2013-02-27 23:55:33 +0100
commit3020d06fdb9fd4e539876c9fb1945b50d55cc21d (patch)
tree39bcbcc1f25d45f6e7efd04e0fcca4ce68de5078 /src/plugins/platforms/ios/qioswindow.h
parent9c8ce6afb0bb19e0cb5902b65efbd1a1b55344eb (diff)
iOS: Change member variable style to be consistent with Qt's de facto standard
Change-Id: Idd65ad9cbb77114466c5b69a799b98a7fee5068f Reviewed-by: Richard Moe Gustavsen <richard.gustavsen@digia.com>
Diffstat (limited to 'src/plugins/platforms/ios/qioswindow.h')
-rw-r--r--src/plugins/platforms/ios/qioswindow.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/plugins/platforms/ios/qioswindow.h b/src/plugins/platforms/ios/qioswindow.h
index f43f3db4f9..2d3d5b072f 100644
--- a/src/plugins/platforms/ios/qioswindow.h
+++ b/src/plugins/platforms/ios/qioswindow.h
@@ -53,13 +53,13 @@
@interface EAGLView : UIView <UIKeyInput>
{
- QPlatformWindow *mWindow;
- EAGLContext *mContext;
+ QPlatformWindow *m_window;
+ EAGLContext *m_context;
- GLint mFramebufferWidth;
- GLint mFramebufferHeight;
+ GLint m_framebufferWidth;
+ GLint m_framebufferHeight;
- GLuint mFramebuffer, mColorRenderbuffer, mDepthRenderbuffer;
+ GLuint m_framebuffer, m_colorRenderbuffer, m_depthRenderbuffer;
id delegate;
// ------- Text Input ----------
@@ -111,23 +111,23 @@ public:
explicit QIOSWindow(QWindow *window);
~QIOSWindow();
- UIWindow *nativeWindow() const { return mWindow; }
- EAGLView *nativeView() const { return mView; }
+ UIWindow *nativeWindow() const { return m_window; }
+ EAGLView *nativeView() const { return m_view; }
void setGeometry(const QRect &rect);
UIWindow *ensureNativeWindow();
QPlatformOpenGLContext *glContext() const;
- QIOSScreen *platformScreen() const { return mScreen; }
+ QIOSScreen *platformScreen() const { return m_screen; }
void updateGeometryAndOrientation();
private:
- QIOSScreen *mScreen;
- UIWindow *mWindow;
- CGRect mFrame;
- EAGLView *mView;
- mutable EAGLPlatformContext *mContext;
+ QIOSScreen *m_screen;
+ UIWindow *m_window;
+ CGRect m_frame;
+ EAGLView *m_view;
+ mutable EAGLPlatformContext *m_context;
};
QT_END_NAMESPACE