summaryrefslogtreecommitdiffstats
path: root/src/projectfilesdlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/projectfilesdlg.cpp')
-rw-r--r--src/projectfilesdlg.cpp26
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