summaryrefslogtreecommitdiffstats
path: root/src/gui/dialogs/AudioPluginDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/dialogs/AudioPluginDialog.cpp')
-rw-r--r--src/gui/dialogs/AudioPluginDialog.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/src/gui/dialogs/AudioPluginDialog.cpp b/src/gui/dialogs/AudioPluginDialog.cpp
index 8c22d36..03afa0c 100644
--- a/src/gui/dialogs/AudioPluginDialog.cpp
+++ b/src/gui/dialogs/AudioPluginDialog.cpp
@@ -118,8 +118,8 @@ AudioPluginDialog::AudioPluginDialog(TQWidget *parent,
TQToolTip::add
(m_bypass, i18n("Bypass this plugin."));
- connect(m_bypass, TQT_SIGNAL(toggled(bool)),
- this, TQT_SLOT(slotBypassChanged(bool)));
+ connect(m_bypass, TQ_SIGNAL(toggled(bool)),
+ this, TQ_SLOT(slotBypassChanged(bool)));
m_insOuts = new TQLabel(i18n("<ports>"), h);
@@ -132,29 +132,29 @@ AudioPluginDialog::AudioPluginDialog(TQWidget *parent,
TQToolTip::add
(m_pluginId, i18n("Unique ID of plugin."));
- connect(m_pluginList, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotPluginSelected(int)));
+ connect(m_pluginList, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotPluginSelected(int)));
- connect(m_pluginCategoryList, TQT_SIGNAL(activated(int)),
- this, TQT_SLOT(slotCategorySelected(int)));
+ connect(m_pluginCategoryList, TQ_SIGNAL(activated(int)),
+ this, TQ_SLOT(slotCategorySelected(int)));
// new line
h = new TQHBox(pluginSelectionBox);
m_copyButton = new TQPushButton(i18n("Copy"), h);
- connect(m_copyButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotCopy()));
+ connect(m_copyButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotCopy()));
TQToolTip::add
(m_copyButton, i18n("Copy plugin parameters"));
m_pasteButton = new TQPushButton(i18n("Paste"), h);
- connect(m_pasteButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotPaste()));
+ connect(m_pasteButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotPaste()));
TQToolTip::add
(m_pasteButton, i18n("Paste plugin parameters"));
m_defaultButton = new TQPushButton(i18n("Default"), h);
- connect(m_defaultButton, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotDefault()));
+ connect(m_defaultButton, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotDefault()));
TQToolTip::add
(m_defaultButton, i18n("Set to defaults"));
@@ -523,8 +523,8 @@ AudioPluginDialog::slotPluginSelected(int i)
m_gridLayout->addMultiCellWidget(m_programCombo,
0, 0, 1, m_gridLayout->numCols() - 1,
TQt::AlignLeft);
- connect(m_programCombo, TQT_SIGNAL(activated(const TQString &)),
- this, TQT_SLOT(slotPluginProgramChanged(const TQString &)));
+ connect(m_programCombo, TQ_SIGNAL(activated(const TQString &)),
+ this, TQ_SLOT(slotPluginProgramChanged(const TQString &)));
m_programCombo->clear();
m_programCombo->insertItem(i18n("<none selected>"));
@@ -553,8 +553,8 @@ AudioPluginDialog::slotPluginSelected(int i)
showBounds,
portCount > tooManyPorts);
- connect(control, TQT_SIGNAL(valueChanged(float)),
- this, TQT_SLOT(slotPluginPortChanged(float)));
+ connect(control, TQ_SIGNAL(valueChanged(float)),
+ this, TQ_SLOT(slotPluginPortChanged(float)));
m_pluginWidgets.push_back(control);
}
@@ -720,8 +720,8 @@ AudioPluginDialog::updatePluginProgramList()
m_programCombo->show();
m_programCombo->blockSignals(true);
- connect(m_programCombo, TQT_SIGNAL(activated(const TQString &)),
- this, TQT_SLOT(slotPluginProgramChanged(const TQString &)));
+ connect(m_programCombo, TQ_SIGNAL(activated(const TQString &)),
+ this, TQ_SLOT(slotPluginProgramChanged(const TQString &)));
} else {
return ;