diff options
Diffstat (limited to 'kcontrol/kio/kproxydlgbase.cpp')
-rw-r--r-- | kcontrol/kio/kproxydlgbase.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kcontrol/kio/kproxydlgbase.cpp b/kcontrol/kio/kproxydlgbase.cpp index c901037e3..e95625713 100644 --- a/kcontrol/kio/kproxydlgbase.cpp +++ b/kcontrol/kio/kproxydlgbase.cpp @@ -56,19 +56,19 @@ void KProxyData::init() } -KProxyDialogBase::KProxyDialogBase( QWidget* parent, const char* name, - bool modal, const QString &caption ) +KProxyDialogBase::KProxyDialogBase( TQWidget* parent, const char* name, + bool modal, const TQString &caption ) :KDialogBase( parent, name, modal, caption, Ok|Cancel, Ok, true ) { m_bHasValidData = false; } -void KProxyDialogBase::setHighLight (QWidget* widget, bool highlight) +void KProxyDialogBase::setHighLight (TQWidget* widget, bool highlight) { if (!widget) return; - QFont f = widget->font(); + TQFont f = widget->font(); f.setBold( highlight ); widget->setFont( f ); } |