forked from qt-creator/qt-creator
utils, qmljstools, vcsbase: s/\bm_d\b/d/g
Change-Id: I4678e9188b8f630aa3a3221be348984cdc7699dd Reviewed-on: http://codereview.qt-project.org/4992 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -155,7 +155,7 @@ QVariant EnvironmentModel::data(const QModelIndex &index, int role) const
|
||||
}
|
||||
}
|
||||
if (role == Qt::FontRole) {
|
||||
// check whether this environment variable exists in m_d->m_items
|
||||
// check whether this environment variable exists in d->m_items
|
||||
if (changes(d->m_resultEnvironment.key(d->m_resultEnvironment.constBegin() + index.row()))) {
|
||||
QFont f;
|
||||
f.setBold(true);
|
||||
@@ -320,7 +320,7 @@ void EnvironmentModel::unsetVariable(const QString &name)
|
||||
if (row < 0)
|
||||
return;
|
||||
|
||||
// look in m_d->m_items for the variable
|
||||
// look in d->m_items for the variable
|
||||
int pos = d->findInChanges(name);
|
||||
if (pos != -1) {
|
||||
d->m_items[pos].unset = true;
|
||||
|
||||
Reference in New Issue
Block a user