summaryrefslogtreecommitdiffstats
path: root/tools/testcon/mainwindow.h
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-12-22 09:56:10 +0100
committerFriedemann Kleint <Friedemann.Kleint@theqtcompany.com>2015-12-22 12:16:34 +0000
commit3c5ccb7a4271e5334e100f773452b1ad59487ba1 (patch)
treef12cabab50283b8670dfa2850f1a2883582e577e /tools/testcon/mainwindow.h
parentdd0feaa95a4c3e186c18bab16db5552bb8efc2db (diff)
testcon: Use m_ convention and constructor initialization for member variables.
Task-number: QTBUG-49712 Change-Id: I0460264dede9109f9627d8557d0264ffb0a9acaa Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'tools/testcon/mainwindow.h')
-rw-r--r--tools/testcon/mainwindow.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/testcon/mainwindow.h b/tools/testcon/mainwindow.h
index f88106f..cc0f361 100644
--- a/tools/testcon/mainwindow.h
+++ b/tools/testcon/mainwindow.h
@@ -84,13 +84,13 @@ private:
QAxWidget *activeAxWidget() const;
QList<QAxWidget *> axWidgets() const;
- InvokeMethod *dlgInvoke;
- ChangeProperties *dlgProperties;
- AmbientProperties *dlgAmbient;
- QAxScriptManager *scripts;
- QMdiArea *mdiArea;
+ InvokeMethod *m_dlgInvoke;
+ ChangeProperties *m_dlgProperties;
+ AmbientProperties *m_dlgAmbient;
+ QAxScriptManager *m_scripts;
+ QMdiArea *m_mdiArea;
- QtMessageHandler oldDebugHandler;
+ QtMessageHandler m_oldDebugHandler;
private slots:
void updateGUI();