diff options
Diffstat (limited to 'src/kfeedback.cpp')
-rw-r--r-- | src/kfeedback.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kfeedback.cpp b/src/kfeedback.cpp index 3d16646..abce962 100644 --- a/src/kfeedback.cpp +++ b/src/kfeedback.cpp @@ -117,7 +117,7 @@ KFeedbackForm::KFeedbackForm( const TQString & feedbackMailAddress, label = new TQLabel( hbox ); TQ_CHECK_PTR( label ); - label->setPixmap( KGlobal::iconLoader()->loadIcon( "edit", KIcon::Small ) ); + label->setPixmap( TDEGlobal::iconLoader()->loadIcon( "edit", KIcon::Small ) ); label->setSizePolicy( pol ); label = new TQLabel( i18n( " must be answered before a mail can be sent.") , hbox ); @@ -155,7 +155,7 @@ KFeedbackForm::sendMail() TQString subject; - const TDEAboutData * aboutData = KGlobal::instance()->aboutData(); + const TDEAboutData * aboutData = TDEGlobal::instance()->aboutData(); if ( aboutData ) subject = aboutData->programName() + "-" + aboutData->version(); @@ -343,7 +343,7 @@ KFeedbackQuestion::KFeedbackQuestion( KFeedbackQuestionList * parent, { if ( required ) { - setPixmap( 0, KGlobal::iconLoader()->loadIcon( "edit", KIcon::Small ) ); + setPixmap( 0, TDEGlobal::iconLoader()->loadIcon( "edit", KIcon::Small ) ); } setOpen( open ); |