Print bailout on separate row from SP change

It looked kinda weird without a separator between the SP change and the
bailout.

Signed-off-by: Anton Lundin <glance@acc.umu.se>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Anton Lundin 2013-11-20 00:10:52 +01:00 committed by Dirk Hohndel
parent 6acff53735
commit c7941f66b4

View file

@ -850,7 +850,7 @@ void ProfileGraphicsView::plot_one_event(struct event *ev)
name += QString(":%1").arg(ev->value);
}
} else if (ev->name && name == "SP change") {
name += tr("Bailing out to OC");
name += "\n" + tr("Bailing out to OC");
} else {
name += ev->flags == SAMPLE_FLAGS_BEGIN ? tr(" begin", "Starts with space!") :
ev->flags == SAMPLE_FLAGS_END ? tr(" end", "Starts with space!") : "";