summaryrefslogtreecommitdiffstats
path: root/src/gui/configuration/AudioPropertiesPage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/configuration/AudioPropertiesPage.cpp')
-rw-r--r--src/gui/configuration/AudioPropertiesPage.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/configuration/AudioPropertiesPage.cpp b/src/gui/configuration/AudioPropertiesPage.cpp
index ac2849d..29bfdb4 100644
--- a/src/gui/configuration/AudioPropertiesPage.cpp
+++ b/src/gui/configuration/AudioPropertiesPage.cpp
@@ -82,8 +82,8 @@ AudioPropertiesPage::AudioPropertiesPage(RosegardenGUIDoc *doc,
calculateStats();
- connect(m_changePathButton, TQT_SIGNAL(released()),
- TQT_SLOT(slotFileDialog()));
+ connect(m_changePathButton, TQ_SIGNAL(released()),
+ TQ_SLOT(slotFileDialog()));
addTab(frame, i18n("Modify audio path"));
}
@@ -95,9 +95,9 @@ AudioPropertiesPage::calculateStats()
//
TQString mountPoint = TDEIO::findPathMountPoint(m_path->text());
KDiskFreeSp * job = new KDiskFreeSp;
- connect(job, TQT_SIGNAL(foundMountPoint(const TQString&, unsigned long, unsigned long,
+ connect(job, TQ_SIGNAL(foundMountPoint(const TQString&, unsigned long, unsigned long,
unsigned long)),
- this, TQT_SLOT(slotFoundMountPoint(const TQString&, unsigned long, unsigned long,
+ this, TQ_SLOT(slotFoundMountPoint(const TQString&, unsigned long, unsigned long,
unsigned long)));
job->readDF(mountPoint);
}
@@ -153,11 +153,11 @@ AudioPropertiesPage::slotFileDialog()
this, "file dialog", true);
fileDialog->setMode(KFile::Directory);
- connect(fileDialog, TQT_SIGNAL(fileSelected(const TQString&)),
- TQT_SLOT(slotFileSelected(const TQString&)));
+ connect(fileDialog, TQ_SIGNAL(fileSelected(const TQString&)),
+ TQ_SLOT(slotFileSelected(const TQString&)));
- connect(fileDialog, TQT_SIGNAL(destroyed()),
- TQT_SLOT(slotDirectoryDialogClosed()));
+ connect(fileDialog, TQ_SIGNAL(destroyed()),
+ TQ_SLOT(slotDirectoryDialogClosed()));
if (fileDialog->exec() == TQDialog::Accepted) {
m_path->setText(fileDialog->selectedFile());