From 11f31c37e5fa4889d9989f10272f44845449cb7b Mon Sep 17 00:00:00 2001 From: tpearson Date: Mon, 6 Sep 2010 20:59:29 +0000 Subject: Initial TQt conversion git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- src/gui/studio/RemapInstrumentDialog.cpp | 34 ++++++++++++++++---------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'src/gui/studio/RemapInstrumentDialog.cpp') 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 #include #include -#include -#include -#include -#include -#include -#include +#include +#include +#include +#include +#include +#include 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); -- cgit v1.2.3