diff options
Diffstat (limited to 'src/gui/dialogs/CompositionLengthDialog.cpp')
-rw-r--r-- | src/gui/dialogs/CompositionLengthDialog.cpp | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/src/gui/dialogs/CompositionLengthDialog.cpp b/src/gui/dialogs/CompositionLengthDialog.cpp index 24a3107..85d2530 100644 --- a/src/gui/dialogs/CompositionLengthDialog.cpp +++ b/src/gui/dialogs/CompositionLengthDialog.cpp @@ -28,39 +28,39 @@ #include <klocale.h> #include "base/Composition.h" #include <kdialogbase.h> -#include <qhbox.h> -#include <qlabel.h> -#include <qspinbox.h> -#include <qvbox.h> -#include <qwidget.h> +#include <tqhbox.h> +#include <tqlabel.h> +#include <tqspinbox.h> +#include <tqvbox.h> +#include <tqwidget.h> namespace Rosegarden { CompositionLengthDialog::CompositionLengthDialog( - QWidget *parent, + TQWidget *parent, Composition *composition): KDialogBase(parent, 0, true, i18n("Change Composition Length"), Ok | Cancel), m_composition(composition) { - QVBox *vBox = makeVBoxMainWidget(); + TQVBox *vBox = makeVBoxMainWidget(); - new QLabel(i18n("Set the Start and End bar markers for this Composition"), + new TQLabel(i18n("Set the Start and End bar markers for this Composition"), vBox); - QHBox *startBox = new QHBox(vBox); - new QLabel(i18n("Start Bar"), startBox); - m_startMarkerSpinBox = new QSpinBox(startBox); + TQHBox *startBox = new TQHBox(vBox); + new TQLabel(i18n("Start Bar"), startBox); + m_startMarkerSpinBox = new TQSpinBox(startBox); m_startMarkerSpinBox->setMinValue( -10); m_startMarkerSpinBox->setMaxValue(10000); m_startMarkerSpinBox->setValue( m_composition->getBarNumber(m_composition->getStartMarker()) + 1); - QHBox *endBox = new QHBox(vBox); - new QLabel(i18n("End Bar"), endBox); - m_endMarkerSpinBox = new QSpinBox(endBox); + TQHBox *endBox = new TQHBox(vBox); + new TQLabel(i18n("End Bar"), endBox); + m_endMarkerSpinBox = new TQSpinBox(endBox); m_endMarkerSpinBox->setMinValue( -10); m_endMarkerSpinBox->setMaxValue(10000); m_endMarkerSpinBox->setValue( |