diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:34:09 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-05 10:34:09 +0900 |
commit | 691489dddc259e7d7c463bde3347d7cea780d54f (patch) | |
tree | a1229cef56c3ebcc157bcdcf71a9ad6ecdaf992e /src/ktview.cpp | |
parent | 61fd6af18c424db720a34272683f1bde05908bee (diff) | |
download | klamav-691489dddc259e7d7c463bde3347d7cea780d54f.tar.gz klamav-691489dddc259e7d7c463bde3347d7cea780d54f.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/ktview.cpp')
-rw-r--r-- | src/ktview.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/ktview.cpp b/src/ktview.cpp index dd018a1..9c8eb95 100644 --- a/src/ktview.cpp +++ b/src/ktview.cpp @@ -63,17 +63,17 @@ KTView::KTView(TQWidget *parent, const char* name) : refresh(); listView->setSelected(listView->firstChild(), true); -// connect(this, SIGNAL(enableModificationButtons(bool)), parent, -// SLOT(slotEnableModificationButtons(bool))); +// connect(this, TQ_SIGNAL(enableModificationButtons(bool)), parent, +// TQ_SLOT(slotEnableModificationButtons(bool))); // -// connect(this, SIGNAL(enablePaste(bool)), parent, -// SLOT(slotEnablePaste(bool))); +// connect(this, TQ_SIGNAL(enablePaste(bool)), parent, +// TQ_SLOT(slotEnablePaste(bool))); // -// connect(this, SIGNAL(enableRunNow(bool)), parent, -// SLOT(slotEnableRunNow(bool))); +// connect(this, TQ_SIGNAL(enableRunNow(bool)), parent, +// TQ_SLOT(slotEnableRunNow(bool))); // -// connect(this, SIGNAL(enableEnabled(bool)), parent, -// SLOT(slotEnableEnabled(bool))); +// connect(this, TQ_SIGNAL(enableEnabled(bool)), parent, +// TQ_SLOT(slotEnableEnabled(bool))); // // emit(enableModificationButtons(false)); // emit(enablePaste(clipboardCTVariable)); @@ -161,17 +161,17 @@ void KTView::refresh() resizeEvent(); - connect(listView, SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint&, int)), - SLOT(slotMenu(TQListViewItem*, const TQPoint&, int))); + connect(listView, TQ_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint&, int)), + TQ_SLOT(slotMenu(TQListViewItem*, const TQPoint&, int))); - connect(listView, SIGNAL(selectionChanged(TQListViewItem*)), - SLOT(slotSetCurrent(TQListViewItem*))); + connect(listView, TQ_SIGNAL(selectionChanged(TQListViewItem*)), + TQ_SLOT(slotSetCurrent(TQListViewItem*))); - connect(listView, SIGNAL(doubleClicked(TQListViewItem*)), - SLOT(slotEdit(TQListViewItem*))); + connect(listView, TQ_SIGNAL(doubleClicked(TQListViewItem*)), + TQ_SLOT(slotEdit(TQListViewItem*))); - connect(listView, SIGNAL(returnPressed(TQListViewItem*)), - SLOT(slotEdit(TQListViewItem*))); + connect(listView, TQ_SIGNAL(returnPressed(TQListViewItem*)), + TQ_SLOT(slotEdit(TQListViewItem*))); // switch to the new view |