diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2010-09-06 20:59:29 +0000 |
commit | 11f31c37e5fa4889d9989f10272f44845449cb7b (patch) | |
tree | 4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/studio/RemapInstrumentDialog.cpp | |
parent | 832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff) | |
download | rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.tar.gz rosegarden-11f31c37e5fa4889d9989f10272f44845449cb7b.zip |
Initial TQt conversion
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/rosegarden@1172292 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
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); |