diff options
Diffstat (limited to 'src/gui/dialogs/BeatsBarsDialog.cpp')
-rw-r--r-- | src/gui/dialogs/BeatsBarsDialog.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/gui/dialogs/BeatsBarsDialog.cpp b/src/gui/dialogs/BeatsBarsDialog.cpp index 774ddb9..8f765a7 100644 --- a/src/gui/dialogs/BeatsBarsDialog.cpp +++ b/src/gui/dialogs/BeatsBarsDialog.cpp @@ -24,35 +24,35 @@ #include "BeatsBarsDialog.h" -#include <qlayout.h> +#include <tqlayout.h> #include <klocale.h> #include "base/Segment.h" #include <kcombobox.h> #include <kdialogbase.h> -#include <qframe.h> -#include <qgroupbox.h> -#include <qhbox.h> -#include <qspinbox.h> -#include <qwidget.h> +#include <tqframe.h> +#include <tqgroupbox.h> +#include <tqhbox.h> +#include <tqspinbox.h> +#include <tqwidget.h> namespace Rosegarden { -BeatsBarsDialog::BeatsBarsDialog(QWidget* parent) : +BeatsBarsDialog::BeatsBarsDialog(TQWidget* parent) : KDialogBase(parent, 0, true, i18n("Audio Segment Duration"), Ok | Cancel, Ok) { - QHBox *hbox = makeHBoxMainWidget(); + TQHBox *hbox = makeHBoxMainWidget(); - QGroupBox *gbox = new QGroupBox(1, Horizontal, + TQGroupBox *gbox = new TQGroupBox(1, Horizontal, i18n("The selected audio segment contains:"), hbox); - QFrame *frame = new QFrame(gbox); - QGridLayout *layout = new QGridLayout(frame, 1, 2, 5, 5); + TQFrame *frame = new TQFrame(gbox); + TQGridLayout *layout = new TQGridLayout(frame, 1, 2, 5, 5); - m_spinBox = new QSpinBox(1, INT_MAX, 1, frame, "glee"); + m_spinBox = new TQSpinBox(1, INT_MAX, 1, frame, "glee"); layout->addWidget(m_spinBox, 0, 0); m_comboBox = new KComboBox(false, frame); |