diff options
Diffstat (limited to 'src/gui/dialogs/ExportDeviceDialog.cpp')
-rw-r--r-- | src/gui/dialogs/ExportDeviceDialog.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gui/dialogs/ExportDeviceDialog.cpp b/src/gui/dialogs/ExportDeviceDialog.cpp index ce5f52e..348a5b8 100644 --- a/src/gui/dialogs/ExportDeviceDialog.cpp +++ b/src/gui/dialogs/ExportDeviceDialog.cpp @@ -27,28 +27,28 @@ #include <klocale.h> #include <kdialogbase.h> -#include <qbuttongroup.h> -#include <qlabel.h> -#include <qradiobutton.h> -#include <qstring.h> -#include <qvbox.h> -#include <qwidget.h> +#include <tqbuttongroup.h> +#include <tqlabel.h> +#include <tqradiobutton.h> +#include <tqstring.h> +#include <tqvbox.h> +#include <tqwidget.h> namespace Rosegarden { -ExportDeviceDialog::ExportDeviceDialog(QWidget *parent, QString deviceName) : +ExportDeviceDialog::ExportDeviceDialog(TQWidget *parent, TQString deviceName) : KDialogBase(parent, "exportdevicedialog", true, i18n("Export Devices..."), Ok | Cancel, Ok) { - QVBox *vbox = makeVBoxMainWidget(); - QButtonGroup *bg = new QButtonGroup(1, Qt::Horizontal, + TQVBox *vbox = makeVBoxMainWidget(); + TQButtonGroup *bg = new TQButtonGroup(1, Qt::Horizontal, i18n("Export devices"), vbox); - m_exportAll = new QRadioButton(i18n("Export all devices"), bg); - m_exportOne = new QRadioButton(i18n("Export selected device only"), bg); - new QLabel(i18n(" (\"%1\")").arg(deviceName), bg); + m_exportAll = new TQRadioButton(i18n("Export all devices"), bg); + m_exportOne = new TQRadioButton(i18n("Export selected device only"), bg); + new TQLabel(i18n(" (\"%1\")").arg(deviceName), bg); m_exportOne->setChecked(true); } |