diff options
Diffstat (limited to 'src/gui/studio/RemapInstrumentDialog.cpp')
-rw-r--r-- | src/gui/studio/RemapInstrumentDialog.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/src/gui/studio/RemapInstrumentDialog.cpp b/src/gui/studio/RemapInstrumentDialog.cpp index dae43da..a957650 100644 --- a/src/gui/studio/RemapInstrumentDialog.cpp +++ b/src/gui/studio/RemapInstrumentDialog.cpp @@ -39,43 +39,43 @@ #include <kcommand.h> #include <kdialogbase.h> #include <klocale.h> -#include <qbuttongroup.h> -#include <qgroupbox.h> -#include <qlabel.h> -#include <qradiobutton.h> -#include <qvbox.h> -#include <qwidget.h> +#include <tqbuttongroup.h> +#include <tqgroupbox.h> +#include <tqlabel.h> +#include <tqradiobutton.h> +#include <tqvbox.h> +#include <tqwidget.h> namespace Rosegarden { -RemapInstrumentDialog::RemapInstrumentDialog(QWidget *parent, +RemapInstrumentDialog::RemapInstrumentDialog(TQWidget *parent, RosegardenGUIDoc *doc): KDialogBase(parent, "", true, i18n("Remap Instrument assigments..."), Ok | Apply | Cancel), m_doc(doc) { - QVBox *vBox = makeVBoxMainWidget(); + TQVBox *vBox = makeVBoxMainWidget(); - m_buttonGroup = new QButtonGroup(1, Qt::Horizontal, + m_buttonGroup = new TQButtonGroup(1, Qt::Horizontal, i18n("Device or Instrument"), vBox); - new QLabel(i18n("Remap Tracks by all Instruments on a Device or by single Instrument"), m_buttonGroup); - m_deviceButton = new QRadioButton(i18n("Device"), m_buttonGroup); - m_instrumentButton = new QRadioButton(i18n("Instrument"), m_buttonGroup); + new TQLabel(i18n("Remap Tracks by all Instruments on a Device or by single Instrument"), m_buttonGroup); + m_deviceButton = new TQRadioButton(i18n("Device"), m_buttonGroup); + m_instrumentButton = new TQRadioButton(i18n("Instrument"), m_buttonGroup); - connect(m_buttonGroup, SIGNAL(released(int)), - this, SLOT(slotRemapReleased(int))); + connect(m_buttonGroup, TQT_SIGNAL(released(int)), + this, TQT_SLOT(slotRemapReleased(int))); - QGroupBox *groupBox = new QGroupBox(2, Qt::Horizontal, + TQGroupBox *groupBox = new TQGroupBox(2, Qt::Horizontal, i18n("Choose Source and Destination"), vBox); - new QLabel(i18n("From"), groupBox); - new QLabel(i18n("To"), groupBox); + new TQLabel(i18n("From"), groupBox); + new TQLabel(i18n("To"), groupBox); m_fromCombo = new KComboBox(groupBox); m_toCombo = new KComboBox(groupBox); |