diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 11:53:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-11-05 20:54:59 +0900 |
commit | 48f3d5f4d811e899ed05c12dbd61b43244e045aa (patch) | |
tree | b8d3a57932c4b736ad1203d5566535ccf03eb388 /src/bnpview.cpp | |
parent | 123ea9fbbf9d2cdbfd7169cd3d08bfb99ddc25cf (diff) | |
download | basket-48f3d5f4d811e899ed05c12dbd61b43244e045aa.tar.gz basket-48f3d5f4d811e899ed05c12dbd61b43244e045aa.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ac30f16b60532c3d1ff474177bb36a073d51ceb4)
Diffstat (limited to 'src/bnpview.cpp')
-rw-r--r-- | src/bnpview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bnpview.cpp b/src/bnpview.cpp index af71d4b..6ee0647 100644 --- a/src/bnpview.cpp +++ b/src/bnpview.cpp @@ -84,7 +84,7 @@ const int BNPView::c_delayTooltipTime = 275; BNPView::BNPView(TQWidget *parent, const char *name, KXMLGUIClient *aGUIClient, TDEActionCollection *actionCollection, BasketStatusBar *bar) - : DCOPObject("BasketIface"), TQSplitter(Qt::Horizontal, parent, name), m_actLockBasket(0), m_actPassBasket(0), + : DCOPObject("BasketIface"), TQSplitter(TQt::Horizontal, parent, name), m_actLockBasket(0), m_actPassBasket(0), m_loading(true), m_newBasketPopup(false), m_firstShow(true), m_regionGrabber(0), m_passiveDroppedSelection(0), m_passivePopup(0), m_actionCollection(actionCollection), m_guiClient(aGUIClient), m_statusbar(bar), m_tryHideTimer(0), m_hideTimer(0) @@ -644,7 +644,7 @@ void BNPView::slotShowProperties(TQListViewItem *item, const TQPoint&, int) void BNPView::slotMouseButtonPressed(int button, TQListViewItem *item, const TQPoint &/*pos*/, int /*column*/) { - if (item && (button & Qt::MidButton)) { + if (item && (button & TQt::MidButton)) { // TODO: Paste into ((BasketListViewItem*)listViewItem)->basket() } } |