diff options
Diffstat (limited to 'src/gui/dialogs/BeatsBarsDialog.h')
-rw-r--r-- | src/gui/dialogs/BeatsBarsDialog.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/dialogs/BeatsBarsDialog.h b/src/gui/dialogs/BeatsBarsDialog.h index 6546f01..658a4fb 100644 --- a/src/gui/dialogs/BeatsBarsDialog.h +++ b/src/gui/dialogs/BeatsBarsDialog.h @@ -27,10 +27,10 @@ #define _RG_BEATSBARSDIALOG_H_ #include <kdialogbase.h> -#include <qspinbox.h> +#include <tqspinbox.h> #include <kcombobox.h> -class QWidget; +class TQWidget; namespace Rosegarden @@ -46,13 +46,13 @@ class BeatsBarsDialog : public KDialogBase public: BeatsBarsDialog(); - BeatsBarsDialog(QWidget *parent); + BeatsBarsDialog(TQWidget *parent); int getQuantity() { return m_spinBox->value(); } int getMode() { return m_comboBox->currentItem(); } protected: - QSpinBox *m_spinBox; + TQSpinBox *m_spinBox; KComboBox *m_comboBox; }; |