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.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/gui/rulers/PropertyBox.cpp b/src/gui/rulers/PropertyBox.cpp
index 7037b64..1a21dcf 100644
--- a/src/gui/rulers/PropertyBox.cpp
+++ b/src/gui/rulers/PropertyBox.cpp
@@ -38,22 +38,22 @@ namespace Rosegarden
PropertyBox::PropertyBox(TQString label,
int width,
int height,
- TQWidget *parent,
+ TQWidget *tqparent,
const char *name):
- TQWidget(parent, name),
+ TQWidget(tqparent, name),
m_label(label),
m_width(width),
m_height(height)
{}
-QSize
-PropertyBox::sizeHint() const
+TQSize
+PropertyBox::tqsizeHint() const
{
return TQSize(m_width, m_height);
}
-QSize
-PropertyBox::minimumSizeHint() const
+TQSize
+PropertyBox::tqminimumSizeHint() const
{
return TQSize(m_width, m_height);
}