summaryrefslogtreecommitdiffstats
path: root/src/statusbar.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/statusbar.cpp')
-rw-r--r--src/statusbar.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/statusbar.cpp b/src/statusbar.cpp
index 70838e3..ffb4def 100644
--- a/src/statusbar.cpp
+++ b/src/statusbar.cpp
@@ -64,7 +64,7 @@ void StatusBar::polish() {
int h = 0;
TQObjectList* list = queryList("TQWidget", 0, false, false);
for(TQObject* o = list->first(); o; o = list->next()) {
- int _h = TQT_TQWIDGET(o)->minimumSizeHint().height();
+ int _h = static_cast<TQWidget*>(o)->minimumSizeHint().height();
if(_h > h) {
h = _h;
}
@@ -73,7 +73,7 @@ void StatusBar::polish() {
h -= 4; // hint from amarok, it's too big usually
for(TQObject* o = list->first(); o; o = list->next()) {
- TQT_TQWIDGET(o)->setFixedHeight(h);
+ static_cast<TQWidget*>(o)->setFixedHeight(h);
}
delete list;