diff options
Diffstat (limited to 'src/gui/dialogs/MakeOrnamentDialog.cpp')
-rw-r--r-- | src/gui/dialogs/MakeOrnamentDialog.cpp | 28 |
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); } |