diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:32:00 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-12-29 16:32:00 +0900 |
commit | 07106c0a34f021d33eecae6571f0a67c990081bd (patch) | |
tree | 2a80dba861658d2d64b12c24318c43787c09b721 /src/kprocessorview.cpp | |
parent | 113054cd5b4ce6ed21917e36f30d1fdcf780c525 (diff) | |
download | kpicosim-07106c0a34f021d33eecae6571f0a67c990081bd.tar.gz kpicosim-07106c0a34f021d33eecae6571f0a67c990081bd.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/kprocessorview.cpp')
-rw-r--r-- | src/kprocessorview.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kprocessorview.cpp b/src/kprocessorview.cpp index c483681..3bf4334 100644 --- a/src/kprocessorview.cpp +++ b/src/kprocessorview.cpp @@ -10,8 +10,8 @@ MyListView::MyListView(TQWidget *parent) : TDEListView(parent) { - connect( this, TQT_SIGNAL( contextMenu( TDEListView *, TQListViewItem *, const TQPoint & ) ), - TQT_SLOT( slotContextMenu( TDEListView *, TQListViewItem *, const TQPoint & ) ) ); + connect( this, TQ_SIGNAL( contextMenu( TDEListView *, TQListViewItem *, const TQPoint & ) ), + TQ_SLOT( slotContextMenu( TDEListView *, TQListViewItem *, const TQPoint & ) ) ); } MyListView::~MyListView() @@ -42,8 +42,8 @@ TDEProcessorView::TDEProcessorView(TQWidget *parent, const char *name) view = new MyListView( this ) ; - connect( view, TQT_SIGNAL( itemRenamed( TQListViewItem*) ), this, TQT_SLOT( slotItemRenamed(TQListViewItem*) ) ) ; - connect( view, TQT_SIGNAL( showPopupMenu() ), this, TQT_SLOT( showPopupMenu() ) ) ; + connect( view, TQ_SIGNAL( itemRenamed( TQListViewItem*) ), this, TQ_SLOT( slotItemRenamed(TQListViewItem*) ) ) ; + connect( view, TQ_SIGNAL( showPopupMenu() ), this, TQ_SLOT( showPopupMenu() ) ) ; view->addColumn( "Register" ) ; view->addColumn( "Value" ) ; @@ -104,7 +104,7 @@ void TDEProcessorView::slotHexMode() void TDEProcessorView::showPopupMenu() { TQPopupMenu *menu = new TQPopupMenu( this ) ; - menu->insertItem( "Hexadecimal", this, TQT_SLOT( slotHexMode() ), 0, 1 ) ; + menu->insertItem( "Hexadecimal", this, TQ_SLOT( slotHexMode() ), 0, 1 ) ; menu->setItemChecked( 1, m_bHexMode ) ; menu->exec( TQCursor::pos() ); } |