diff options
author | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-12-28 16:37:45 +0900 |
commit | 11f3716a1c82b43f92dc32083101558f3ec47f27 (patch) | |
tree | 0e0a6f82ea12db7ed50ba5e068128186493d44e1 /src/projectfilesdlg.cpp | |
parent | d399e3a2c6c365c540fe67bc648bacefe4cca707 (diff) | |
download | kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.tar.gz kscope-11f3716a1c82b43f92dc32083101558f3ec47f27.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/projectfilesdlg.cpp')
-rw-r--r-- | src/projectfilesdlg.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/projectfilesdlg.cpp b/src/projectfilesdlg.cpp index a353e5a..568261b 100644 --- a/src/projectfilesdlg.cpp +++ b/src/projectfilesdlg.cpp @@ -65,24 +65,24 @@ ProjectFilesDlg::ProjectFilesDlg(Project* pProj, TQWidget* pParent, m_pFileList->setSortColumn(m_pFileList->columns() + 1); // Add file/directory/tree when the appropriate button is clicked - connect(m_pAddFilesButton, SIGNAL(clicked()), this, - SLOT(slotAddFiles())); - connect(m_pAddDirButton, SIGNAL(clicked()), this, SLOT(slotAddDir())); - connect(m_pAddTreeButton, SIGNAL(clicked()), this, SLOT(slotAddTree())); + connect(m_pAddFilesButton, TQ_SIGNAL(clicked()), this, + TQ_SLOT(slotAddFiles())); + connect(m_pAddDirButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAddDir())); + connect(m_pAddTreeButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAddTree())); // Remove selected files/directory/tree when the appropriate button is // clicked - connect(m_pRemSelButton, SIGNAL(clicked()), this, SLOT(slotRemSel())); - connect(m_pRemDirButton, SIGNAL(clicked()), this, SLOT(slotRemDir())); - connect(m_pRemTreeButton, SIGNAL(clicked()), this, SLOT(slotRemTree())); + connect(m_pRemSelButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotRemSel())); + connect(m_pRemDirButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotRemDir())); + connect(m_pRemTreeButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotRemTree())); // Hide/show files according to filter - connect(m_pFilterButton, SIGNAL(clicked()), this, SLOT(slotFilter())); - connect(m_pShowAllButton, SIGNAL(clicked()), this, SLOT(slotShowAll())); + connect(m_pFilterButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotFilter())); + connect(m_pShowAllButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotShowAll())); // Close the dialog when OK/Cancel are clicked - connect(m_pOKButton, SIGNAL(clicked()), this, SLOT(accept())); - connect(m_pCancelButton, SIGNAL(clicked()), this, SLOT(reject())); + connect(m_pOKButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(accept())); + connect(m_pCancelButton, TQ_SIGNAL(clicked()), this, TQ_SLOT(reject())); // Fill the list with the project's files m_pFileList->setUpdatesEnabled(false); @@ -172,8 +172,8 @@ void ProjectFilesDlg::customEvent(TQCustomEvent* pEvent) // Create the scan progress dialog, if required if (m_pScanDlg == NULL) { m_pScanDlg = new ScanProgressDlg(this); - connect(m_pScanDlg, SIGNAL(cancelled()), this, - SLOT(slotCancelDirScan())); + connect(m_pScanDlg, TQ_SIGNAL(cancelled()), this, + TQ_SLOT(slotCancelDirScan())); } // Set progress indication |