summaryrefslogtreecommitdiff
path: root/src/plugins/boostbuildprojectmanager/b2buildconfiguration.h
diff options
context:
space:
mode:
authorhjk <hjk@theqtcompany.com>2015-05-29 16:00:15 +0200
committerOrgad Shaneh <orgads@gmail.com>2015-07-01 10:43:12 +0000
commit29e86d5a3189cd9d9708327ce80441ecddb4600e (patch)
tree8423376707ce0f43f6abddc463569fa12bacd880 /src/plugins/boostbuildprojectmanager/b2buildconfiguration.h
parent7389250fcd1ada74514f90e8670d7af087e6a7c7 (diff)
downloadqt-creator-wip/boostbuildprojectmanager.tar.gz
Move a bit closer to Qt Creator coding stylewip/boostbuildprojectmanager
- use m_member prefix convention - bind some * to the identifier - remove some unusual comments Change-Id: Ife9b148b54c3f930561e2de79a016dfcfe0487a0 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/boostbuildprojectmanager/b2buildconfiguration.h')
-rw-r--r--src/plugins/boostbuildprojectmanager/b2buildconfiguration.h13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/plugins/boostbuildprojectmanager/b2buildconfiguration.h b/src/plugins/boostbuildprojectmanager/b2buildconfiguration.h
index a9edb7743e..b2914111ec 100644
--- a/src/plugins/boostbuildprojectmanager/b2buildconfiguration.h
+++ b/src/plugins/boostbuildprojectmanager/b2buildconfiguration.h
@@ -12,11 +12,10 @@
#ifndef BBBUILDCONFIGURATION_HPP
#define BBBUILDCONFIGURATION_HPP
-// Qt Creator
#include <projectexplorer/buildconfiguration.h>
#include <projectexplorer/namedwidget.h>
#include <utils/fileutils.h>
-// Qt
+
#include <QList>
#include <QString>
#include <QVariantMap>
@@ -65,8 +64,8 @@ private slots:
void emitWorkingDirectoryChanged();
private:
- Utils::FileName workingDirectory_;
- Utils::FileName lastEmmitedWorkingDirectory_;
+ Utils::FileName m_workingDirectory;
+ Utils::FileName m_lastEmmitedWorkingDirectory;
};
class BuildConfigurationFactory : public ProjectExplorer::IBuildConfigurationFactory
@@ -127,9 +126,9 @@ private slots:
void workingDirectoryChanged();
private:
- BuildConfiguration* bc_;
- Utils::PathChooser* workPathChooser_;
- Utils::PathChooser* buildPathChooser_;
+ BuildConfiguration *m_bc;
+ Utils::PathChooser *m_workPathChooser;
+ Utils::PathChooser *m_buildPathChooser;
};
} // namespace Internal