summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/PitchChooser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/PitchChooser.h')
-rw-r--r--src/gui/widgets/PitchChooser.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/gui/widgets/PitchChooser.h b/src/gui/widgets/PitchChooser.h
index df3b8ef..4c844ca 100644
--- a/src/gui/widgets/PitchChooser.h
+++ b/src/gui/widgets/PitchChooser.h
@@ -26,13 +26,13 @@
#ifndef _RG_ROSEGARDENPITCHCHOOSER_H_
#define _RG_ROSEGARDENPITCHCHOOSER_H_
-#include <qgroupbox.h>
-#include <qstring.h>
+#include <tqgroupbox.h>
+#include <tqstring.h>
-class QWidget;
-class QSpinBox;
-class QLabel;
+class TQWidget;
+class TQSpinBox;
+class TQLabel;
namespace Rosegarden
@@ -45,8 +45,8 @@ class PitchChooser : public QGroupBox
{
Q_OBJECT
public:
- PitchChooser(QString title,
- QWidget *parent,
+ PitchChooser(TQString title,
+ TQWidget *parent,
int defaultPitch = 60);
int getPitch() const;
@@ -62,8 +62,8 @@ public slots:
protected:
int m_defaultPitch;
PitchDragLabel *m_pitchDragLabel;
- QSpinBox *m_pitch;
- QLabel *m_pitchLabel;
+ TQSpinBox *m_pitch;
+ TQLabel *m_pitchLabel;
};