From 478275479f1512cc3df1fbbc6c2b1e9eac9847cf Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Tue, 26 Mar 2019 17:59:36 -0400 Subject: [PATCH] Added tr( ... ) around a string. --- oscar/Graphs/gGraphView.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oscar/Graphs/gGraphView.cpp b/oscar/Graphs/gGraphView.cpp index 3f68ceb8..451ff58f 100644 --- a/oscar/Graphs/gGraphView.cpp +++ b/oscar/Graphs/gGraphView.cpp @@ -1743,7 +1743,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent *event) if (x >= titleWidth + 10) { this->setCursor(Qt::ArrowCursor); } else { - m_tooltip->display("Double click title to pin / unpin\nClick and drag to reorder graphs", x + 10, y, TT_AlignLeft); + m_tooltip->display(tr("Double click title to pin / unpin\nClick and drag to reorder graphs"), x + 10, y, TT_AlignLeft); timedRedraw(0); this->setCursor(Qt::OpenHandCursor);