summaryrefslogtreecommitdiffstats
path: root/krdc/kfullscreenpanel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'krdc/kfullscreenpanel.cpp')
-rw-r--r--krdc/kfullscreenpanel.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/krdc/kfullscreenpanel.cpp b/krdc/kfullscreenpanel.cpp
index 0c85cfdd..a43cc96d 100644
--- a/krdc/kfullscreenpanel.cpp
+++ b/krdc/kfullscreenpanel.cpp
@@ -54,10 +54,10 @@ void Counter::timeout() {
}
-KFullscreenPanel::KFullscreenPanel(TQWidget* parent,
+KFullscreenPanel::KFullscreenPanel(TQWidget* tqparent,
const char *name,
const TQSize &resolution) :
- TQWidget(parent, name),
+ TQWidget(tqparent, name),
m_child(0),
m_layout(0),
m_fsResolution(resolution),
@@ -88,7 +88,7 @@ void KFullscreenPanel::setChild(TQWidget *child) {
}
void KFullscreenPanel::doLayout() {
- TQSize s = sizeHint();
+ TQSize s = tqsizeHint();
setFixedSize(s);
setGeometry((m_fsResolution.width() - s.width())/2, 0,
s.width(), s.height());