diff options
author | Michele Calgaro <[email protected]> | 2023-11-05 11:53:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-05 11:53:32 +0900 |
commit | ac30f16b60532c3d1ff474177bb36a073d51ceb4 (patch) | |
tree | 7c9ddd8632cb6258980bb5e04ad69482ded38c82 /src/bnpview.cpp | |
parent | 5665df9602807d84c8de673a2b4101f2e3a9fd89 (diff) | |
download | basket-ac30f16b60532c3d1ff474177bb36a073d51ceb4.tar.gz basket-ac30f16b60532c3d1ff474177bb36a073d51ceb4.zip |
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]>
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() } } |