Fixed member variable prefix to be in line with coding standards

This commit is contained in:
Thorbjørn Lindeijer
2009-03-18 12:18:59 +01:00
parent 1a775dd8ca
commit 93b3dda602
16 changed files with 190 additions and 191 deletions

View File

@@ -37,16 +37,16 @@ protected:
virtual bool validateCurrentPage();
private:
int _firstPageId;
int _secondPageId;
int m_firstPageId;
int m_secondPageId;
Core::Utils::PathChooser *_pathChooser;
Core::Utils::PathChooser *m_pathChooser;
QTreeView *_dirView;
QDirModel *_dirModel;
QTreeView *m_dirView;
QDirModel *m_dirModel;
QListView *_filesView;
QDirModel *_filesModel;
QListView *m_filesView;
QDirModel *m_filesModel;
};
class GenericProjectWizard : public Core::BaseFileWizard