QmlDesigner.statesEditor: fix going back to base state

forwarding to QmlModelView::customNotification(); was missing

it missing since ever but the code I removed in
861981a39d shadowed this.

Reviewed-by: Kai Koehne
This commit is contained in:
Thomas Hartmann
2010-04-23 11:11:07 +02:00
parent 4f016abbf2
commit 3c87882251

View File

@@ -391,11 +391,12 @@ void StatesEditorView::otherPropertyChanged(const QmlObjectNode &qmlObjectNode,
}
void StatesEditorView::customNotification(const AbstractView * /*view*/, const QString & /*identifier*/, const QList<ModelNode> & /*nodeList*/, const QList<QVariant> & /*data*/)
void StatesEditorView::customNotification(const AbstractView * view, const QString & identifier, const QList<ModelNode> & nodeList, const QList<QVariant> & data)
{
if (debug)
qDebug() << __FUNCTION__;
QmlModelView::customNotification(view, identifier, nodeList, data);
}
QPixmap StatesEditorView::renderState(int i)