summaryrefslogtreecommitdiffstats
path: root/src/gui/rulers/PropertyBox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/rulers/PropertyBox.cpp')
-rw-r--r--src/gui/rulers/PropertyBox.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/gui/rulers/PropertyBox.cpp b/src/gui/rulers/PropertyBox.cpp
index 38d67ef..7037b64 100644
--- a/src/gui/rulers/PropertyBox.cpp
+++ b/src/gui/rulers/PropertyBox.cpp
@@ -26,21 +26,21 @@
#include "PropertyBox.h"
#include "gui/general/GUIPalette.h"
-#include <qpainter.h>
-#include <qsize.h>
-#include <qstring.h>
-#include <qwidget.h>
+#include <tqpainter.h>
+#include <tqsize.h>
+#include <tqstring.h>
+#include <tqwidget.h>
namespace Rosegarden
{
-PropertyBox::PropertyBox(QString label,
+PropertyBox::PropertyBox(TQString label,
int width,
int height,
- QWidget *parent,
+ TQWidget *parent,
const char *name):
- QWidget(parent, name),
+ TQWidget(parent, name),
m_label(label),
m_width(width),
m_height(height)
@@ -49,19 +49,19 @@ PropertyBox::PropertyBox(QString label,
QSize
PropertyBox::sizeHint() const
{
- return QSize(m_width, m_height);
+ return TQSize(m_width, m_height);
}
QSize
PropertyBox::minimumSizeHint() const
{
- return QSize(m_width, m_height);
+ return TQSize(m_width, m_height);
}
void
-PropertyBox::paintEvent(QPaintEvent *e)
+PropertyBox::paintEvent(TQPaintEvent *e)
{
- QPainter paint(this);
+ TQPainter paint(this);
paint.setPen(GUIPalette::getColour(GUIPalette::MatrixElementBorder));
//paint.setBrush(GUIPalette::getColour(GUIPalette::MatrixElementBlock));