summaryrefslogtreecommitdiffstats
path: root/src/gui/widgets/HSpinBox.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/widgets/HSpinBox.h')
-rw-r--r--src/gui/widgets/HSpinBox.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/gui/widgets/HSpinBox.h b/src/gui/widgets/HSpinBox.h
index aa60b65..70baf87 100644
--- a/src/gui/widgets/HSpinBox.h
+++ b/src/gui/widgets/HSpinBox.h
@@ -26,10 +26,10 @@
#ifndef _RG_HSPINBOX_H_
#define _RG_HSPINBOX_H_
-#include <qobject.h>
-#include <qspinbox.h>
-#include <qstring.h>
-#include <qvalidator.h>
+#include <tqobject.h>
+#include <tqspinbox.h>
+#include <tqstring.h>
+#include <tqvalidator.h>
namespace Rosegarden
@@ -37,18 +37,18 @@ namespace Rosegarden
class HSpinBox : public QSpinBox
{
- QString mapValueToText(int j);
+ TQString mapValueToText(int j);
int mapTextToValue( bool* ok );
public:
- HSpinBox( int minV, int maxV, int step, QWidget* parent,
+ HSpinBox( int minV, int maxV, int step, TQWidget* parent,
double bottom, double top, int decimals, float initialValue);
//constructor with default settings
- HSpinBox( QWidget* parent, float initialValue = 0.2, int step=1,
+ HSpinBox( TQWidget* parent, float initialValue = 0.2, int step=1,
double bottom=-25.0, double top=25.0, int decimals=3,
- const QObject* recv=NULL, const char* mem=NULL);
+ const TQObject* recv=NULL, const char* mem=NULL);
float valuef();
void setValuef(float v);