Changed property to p, property is a reserved word in VS.

This commit is contained in:
dfighter1985 2014-07-11 20:47:24 +02:00
parent 3dc9d07f59
commit ae120af5b5
2 changed files with 3 additions and 3 deletions

View file

@ -195,9 +195,9 @@ void PropertyEditorWidget::updateSelection(Node *node)
blockSignalsOfProperties(false); blockSignalsOfProperties(false);
} }
void PropertyEditorWidget::propertyChanged(QtProperty *property) void PropertyEditorWidget::propertyChanged(QtProperty *p)
{ {
nlinfo(QString("property %1 changed").arg(property->propertyName()).toUtf8().constData()); nlinfo(QString("property %1 changed").arg(p->propertyName()).toUtf8().constData());
} }
void PropertyEditorWidget::resetProperty(QtProperty *property) void PropertyEditorWidget::resetProperty(QtProperty *property)

View file

@ -57,7 +57,7 @@ public Q_SLOTS:
/// Update of selections /// Update of selections
void updateSelection(Node *node); void updateSelection(Node *node);
void propertyChanged(QtProperty *property); void propertyChanged(QtProperty *p);
void resetProperty(QtProperty *property); void resetProperty(QtProperty *property);
private: private: