summaryrefslogtreecommitdiffstats
path: root/src/gui/dialogs/CompositionLengthDialog.cpp
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:59:29 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-06 20:59:29 +0000
commit11f31c37e5fa4889d9989f10272f44845449cb7b (patch)
tree4383da04a76c497950d957fc6120b0fd0d9082c2 /src/gui/dialogs/CompositionLengthDialog.cpp
parent832eb69d571e8e518db45d0c0e6fbc0f00690209 (diff)
downloadrosegarden-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/dialogs/CompositionLengthDialog.cpp')
-rw-r--r--src/gui/dialogs/CompositionLengthDialog.cpp28
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(