diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:33:37 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:33:37 +0900 |
commit | 43379ee382fcc18c575c57fdae218a7d0e51e526 (patch) | |
tree | 5fcb954cee7a289c2a3b6cac92171cb18b0bf800 /src/kbfxplasmaindexview.cpp | |
parent | bb92088ae48f7facbc0d25370eb7eb32f183328c (diff) | |
download | kbfx-43379ee382fcc18c575c57fdae218a7d0e51e526.tar.gz kbfx-43379ee382fcc18c575c57fdae218a7d0e51e526.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kbfxplasmaindexview.cpp')
-rw-r--r-- | src/kbfxplasmaindexview.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kbfxplasmaindexview.cpp b/src/kbfxplasmaindexview.cpp index a1e575d..cba3b69 100644 --- a/src/kbfxplasmaindexview.cpp +++ b/src/kbfxplasmaindexview.cpp @@ -43,8 +43,8 @@ KbfxPlasmaIndexView::KbfxPlasmaIndexView ( TQWidget * parent, const char *name, m_currentItem = 0L; m_selectedItem = 0L; // m_pluginList = ""; - connect ( this, TQT_SIGNAL ( clicked ( KbfxPlasmaIndexItem * ) ), this, - TQT_SLOT ( slotClicked ( KbfxPlasmaIndexItem * ) ) ); + connect ( this, TQ_SIGNAL ( clicked ( KbfxPlasmaIndexItem * ) ), this, + TQ_SLOT ( slotClicked ( KbfxPlasmaIndexItem * ) ) ); m_currentView = 0; setDragAutoScroll ( true ); } @@ -167,8 +167,8 @@ KbfxPlasmaIndexView::contentsContextMenuEvent ( TQContextMenuEvent * event ) event = event; /* m_pluginMenu = new TDEPopupMenu ( this );; - connect ( m_pluginMenu, TQT_SIGNAL ( activated ( int ) ), this, - TQT_SLOT ( contextMenuSlot ( int ) ) ); + connect ( m_pluginMenu, TQ_SIGNAL ( activated ( int ) ), this, + TQ_SLOT ( contextMenuSlot ( int ) ) ); m_pluginMenu->insertTitle ( "Insert Plugin", 0, 0 ); int _index = 1; @@ -317,7 +317,7 @@ KbfxPlasmaIndexView::contentsMouseMoveEvent ( TQMouseEvent * me ) this->setCursor ( TQCursor ( TQt::PointingHandCursor ) ); - TQTimer::singleShot ( 800, this, TQT_SLOT ( checkMousePos () ) ); + TQTimer::singleShot ( 800, this, TQ_SLOT ( checkMousePos () ) ); if ( contentsToViewport ( me->pos () ).y () < this->height () / 5 ) { |