diff options
Diffstat (limited to 'kalarm/lib/label.cpp')
-rw-r--r-- | kalarm/lib/label.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kalarm/lib/label.cpp b/kalarm/lib/label.cpp index d2b18ba10..d532b67e3 100644 --- a/kalarm/lib/label.cpp +++ b/kalarm/lib/label.cpp @@ -55,7 +55,7 @@ void Label::setBuddy(TQWidget* bud) if (w) { while (w->focusProxy()) - w = w->focusProxy(); + w = TQT_TQWIDGET(w->focusProxy()); if (!w->inherits(TQRADIOBUTTON_OBJECT_NAME_STRING)) w = 0; } @@ -106,7 +106,7 @@ void Label::activated() LabelFocusWidget::LabelFocusWidget(TQWidget* tqparent, const char* name) : TQWidget(tqparent, name) { - setFocusPolicy(ClickFocus); + setFocusPolicy(Qt::ClickFocus); setFixedSize(TQSize(1,1)); } |