diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:07:43 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-04 23:07:43 +0900 |
commit | 84c57055d607cbb05adfacb46b1d8a21685c098a (patch) | |
tree | 7ff51090f114461a30178e012e7a9bac925e011f /plugins/stats/StatsCon.cpp | |
parent | f25d0eec8a3966312528f6fc84dabda64749691d (diff) | |
download | ktorrent-84c57055d607cbb05adfacb46b1d8a21685c098a.tar.gz ktorrent-84c57055d607cbb05adfacb46b1d8a21685c098a.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'plugins/stats/StatsCon.cpp')
-rw-r--r-- | plugins/stats/StatsCon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/stats/StatsCon.cpp b/plugins/stats/StatsCon.cpp index 568005d..d2f8d5f 100644 --- a/plugins/stats/StatsCon.cpp +++ b/plugins/stats/StatsCon.cpp @@ -25,13 +25,13 @@ namespace kt { StatsCon::StatsCon(TQWidget * p) : StatsConWgt(p), pmPeersConCht(new ChartDrawer(PeersConGbw, StatsPluginSettings::connectionsMeasurements())), pmDHTCht(new ChartDrawer(DHTGbw, StatsPluginSettings::dHTMeasurements())) { - PeersConGbw->setColumnLayout(0, Qt::Vertical ); + PeersConGbw->setColumnLayout(0, TQt::Vertical ); PeersConGbw->layout()->setSpacing( 6 ); PeersConGbw->layout()->setMargin( 11 ); pmPeersConLay = new TQVBoxLayout(PeersConGbw -> layout()); - DHTGbw->setColumnLayout(0, Qt::Vertical ); + DHTGbw->setColumnLayout(0, TQt::Vertical ); DHTGbw->layout()->setSpacing( 6 ); DHTGbw->layout()->setMargin( 11 ); |