diff options
Diffstat (limited to 'src/gui/dialogs/PitchPickerDialog.cpp')
-rw-r--r-- | src/gui/dialogs/PitchPickerDialog.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/dialogs/PitchPickerDialog.cpp b/src/gui/dialogs/PitchPickerDialog.cpp index ddd1f23..dddc2a3 100644 --- a/src/gui/dialogs/PitchPickerDialog.cpp +++ b/src/gui/dialogs/PitchPickerDialog.cpp @@ -26,24 +26,24 @@ #include "PitchPickerDialog.h" #include <klocale.h> #include <kdialogbase.h> -#include <qlayout.h> -#include <qframe.h> -#include <qstring.h> -#include <qvbox.h> -#include <qwidget.h> +#include <tqlayout.h> +#include <tqframe.h> +#include <tqstring.h> +#include <tqvbox.h> +#include <tqwidget.h> namespace Rosegarden { -PitchPickerDialog::PitchPickerDialog(QWidget *parent, int initialPitch, QString text) : +PitchPickerDialog::PitchPickerDialog(TQWidget *parent, int initialPitch, TQString text) : KDialogBase(parent, 0, true, i18n("Pitch Selector"), Ok | Cancel) { - QVBox *vBox = makeVBoxMainWidget(); + TQVBox *vBox = makeVBoxMainWidget(); - QFrame *frame = new QFrame(vBox); + TQFrame *frame = new TQFrame(vBox); - QGridLayout *layout = new QGridLayout(frame, 4, 3, 10, 5); + TQGridLayout *layout = new TQGridLayout(frame, 4, 3, 10, 5); m_pitch = new PitchChooser(text, frame, initialPitch); layout->addMultiCellWidget(m_pitch, 0, 0, 0, 2, Qt::AlignHCenter); |