summaryrefslogtreecommitdiffstats
path: root/src/bnpview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 11:53:32 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-05 11:53:32 +0900
commitac30f16b60532c3d1ff474177bb36a073d51ceb4 (patch)
tree7c9ddd8632cb6258980bb5e04ad69482ded38c82 /src/bnpview.cpp
parent5665df9602807d84c8de673a2b4101f2e3a9fd89 (diff)
downloadbasket-ac30f16b60532c3d1ff474177bb36a073d51ceb4.tar.gz
basket-ac30f16b60532c3d1ff474177bb36a073d51ceb4.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/bnpview.cpp')
-rw-r--r--src/bnpview.cpp4
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()
}
}