[dummyqml] Make prettyName() return a sentence with .

main
Adriaan de Groot 5 years ago
parent ce6d54ad95
commit 04615b251c

@ -74,7 +74,7 @@ QString
QmlViewStep::prettyName() const QmlViewStep::prettyName() const
{ {
// TODO: query the QML itself // TODO: query the QML itself
return tr( "QML Step <i>%1</i>" ).arg( m_name ); return tr( "QML Step <i>%1</i>." ).arg( m_name );
} }

@ -28,7 +28,7 @@ DummyQmlViewStep::~DummyQmlViewStep() {}
QString QString
DummyQmlViewStep::prettyName() const DummyQmlViewStep::prettyName() const
{ {
return tr( "Example QML page" ); return tr( "Example QML page." );
} }

Loading…
Cancel
Save