summaryrefslogtreecommitdiffstats
path: root/src/gui/dialogs/MakeOrnamentDialog.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/MakeOrnamentDialog.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/MakeOrnamentDialog.cpp')
-rw-r--r--src/gui/dialogs/MakeOrnamentDialog.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/gui/dialogs/MakeOrnamentDialog.cpp b/src/gui/dialogs/MakeOrnamentDialog.cpp
index 7e82a22..3dfbddb 100644
--- a/src/gui/dialogs/MakeOrnamentDialog.cpp
+++ b/src/gui/dialogs/MakeOrnamentDialog.cpp
@@ -28,31 +28,31 @@
#include <klocale.h>
#include "gui/widgets/PitchChooser.h"
#include <kdialogbase.h>
-#include <qgroupbox.h>
-#include <qhbox.h>
-#include <qlabel.h>
-#include <qlineedit.h>
-#include <qstring.h>
-#include <qvbox.h>
-#include <qwidget.h>
+#include <tqgroupbox.h>
+#include <tqhbox.h>
+#include <tqlabel.h>
+#include <tqlineedit.h>
+#include <tqstring.h>
+#include <tqvbox.h>
+#include <tqwidget.h>
namespace Rosegarden
{
-MakeOrnamentDialog::MakeOrnamentDialog(QWidget *parent, QString defaultName,
+MakeOrnamentDialog::MakeOrnamentDialog(TQWidget *parent, TQString defaultName,
int defaultBasePitch) :
KDialogBase(parent, "makeornamentdialog", true, i18n("Make Ornament"),
Ok | Cancel, Ok)
{
- QVBox *vbox = makeVBoxMainWidget();
- QGroupBox *nameBox = new QGroupBox(2, Vertical, i18n("Name"), vbox);
+ TQVBox *vbox = makeVBoxMainWidget();
+ TQGroupBox *nameBox = new TQGroupBox(2, Vertical, i18n("Name"), vbox);
- new QLabel(i18n("The name is used to identify both the ornament\nand the triggered segment that stores\nthe ornament's notes."), nameBox);
+ new TQLabel(i18n("The name is used to identify both the ornament\nand the triggered segment that stores\nthe ornament's notes."), nameBox);
- QHBox *hbox = new QHBox(nameBox);
- new QLabel(i18n("Name: "), hbox);
- m_name = new QLineEdit(defaultName, hbox);
+ TQHBox *hbox = new TQHBox(nameBox);
+ new TQLabel(i18n("Name: "), hbox);
+ m_name = new TQLineEdit(defaultName, hbox);
m_pitch = new PitchChooser(i18n("Base pitch"), vbox, defaultBasePitch);
}