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 /libktorrent | |
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 'libktorrent')
-rw-r--r-- | libktorrent/expandablewidget.cpp | 2 | ||||
-rw-r--r-- | libktorrent/labelview.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libktorrent/expandablewidget.cpp b/libktorrent/expandablewidget.cpp index fe7a0df..2302329 100644 --- a/libktorrent/expandablewidget.cpp +++ b/libktorrent/expandablewidget.cpp @@ -57,7 +57,7 @@ namespace kt top_layout->remove(begin->w); // create new toplevel splitter - Qt::Orientation orientation = (pos == RIGHT || pos == LEFT) ? Qt::Horizontal : Qt::Vertical; + TQt::Orientation orientation = (pos == RIGHT || pos == LEFT) ? TQt::Horizontal : TQt::Vertical; TQSplitter* s = new TQSplitter(orientation,this);; se->s = s; diff --git a/libktorrent/labelview.cpp b/libktorrent/labelview.cpp index 7fe1424..1518943 100644 --- a/libktorrent/labelview.cpp +++ b/libktorrent/labelview.cpp @@ -91,7 +91,7 @@ namespace kt void LabelViewItem::mousePressEvent(TQMouseEvent *e) { - if (e->button() == Qt::LeftButton) + if (e->button() == TQt::LeftButton) { clicked(this); } |