diff options
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/profilegraphics.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/profilegraphics.cpp b/qt-ui/profilegraphics.cpp index e85bfc5e1..6f064ab29 100644 --- a/qt-ui/profilegraphics.cpp +++ b/qt-ui/profilegraphics.cpp @@ -830,8 +830,8 @@ void ProfileGraphicsView::plot_one_event(struct event *ev) } else if (ev->name && name == "SP change") { name += tr("Bailing out to OC"); } else { - name += ev->flags == SAMPLE_FLAGS_BEGIN ? tr("Starts with space!"," begin") : - ev->flags == SAMPLE_FLAGS_END ? tr("Starts with space!", " end") : ""; + name += ev->flags == SAMPLE_FLAGS_BEGIN ? tr(" begin", "Starts with space!") : + ev->flags == SAMPLE_FLAGS_END ? tr(" end", "Starts with space!") : ""; } //item->setToolTipController(toolTip); |