summaryrefslogtreecommitdiffstats
path: root/plugins/stats/ChartDrawer.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-04 23:07:43 +0900
committerMichele Calgaro <[email protected]>2023-11-04 23:07:43 +0900
commit84c57055d607cbb05adfacb46b1d8a21685c098a (patch)
tree7ff51090f114461a30178e012e7a9bac925e011f /plugins/stats/ChartDrawer.cpp
parentf25d0eec8a3966312528f6fc84dabda64749691d (diff)
downloadktorrent-84c57055d607cbb05adfacb46b1d8a21685c098a.tar.gz
ktorrent-84c57055d607cbb05adfacb46b1d8a21685c098a.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'plugins/stats/ChartDrawer.cpp')
-rw-r--r--plugins/stats/ChartDrawer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/stats/ChartDrawer.cpp b/plugins/stats/ChartDrawer.cpp
index 6eb08b4..ad4ff67 100644
--- a/plugins/stats/ChartDrawer.cpp
+++ b/plugins/stats/ChartDrawer.cpp
@@ -190,7 +190,7 @@ void ChartDrawer::DrawChart(TQPainter & rPnt)
// ------------
TQPen myop(rPnt.pen());
TQPen topl(myop);
- topl.setStyle(Qt::DotLine);
+ topl.setStyle(TQt::DotLine);
rPnt.setPen(topl);
rPnt.drawLine(0, TrY(FindYScreenCoords(mEls[i].pmVals -> at(mEls[i].pmVals -> size() - 1))), width(), TrY(FindYScreenCoords(mEls[i].pmVals -> at(mEls[i].pmVals -> size() - 1))) );
rPnt.setPen(myop);