diff options
Diffstat (limited to 'src/fetcherconfigdialog.cpp')
-rw-r--r-- | src/fetcherconfigdialog.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/fetcherconfigdialog.cpp b/src/fetcherconfigdialog.cpp index b92ff15..69697e1 100644 --- a/src/fetcherconfigdialog.cpp +++ b/src/fetcherconfigdialog.cpp @@ -66,9 +66,9 @@ void FetcherConfigDialog::init(Fetch::Type type_) { TQBoxLayout* vlay1 = new TQVBoxLayout(topLayout, KDialog::spacingHint()); m_iconLabel = new TQLabel(widget); if(type_ == Fetch::Unknown) { - m_iconLabel->setPixmap(TDEGlobal::iconLoader()->loadIcon(TQString::fromLatin1("network"), KIcon::Panel, 64)); + m_iconLabel->setPixmap(TDEGlobal::iconLoader()->loadIcon(TQString::fromLatin1("network"), TDEIcon::Panel, 64)); } else { - m_iconLabel->setPixmap(Fetch::Manager::self()->fetcherIcon(type_, KIcon::Panel, 64)); + m_iconLabel->setPixmap(Fetch::Manager::self()->fetcherIcon(type_, TDEIcon::Panel, 64)); } vlay1->addWidget(m_iconLabel); vlay1->addStretch(1); @@ -191,7 +191,7 @@ void FetcherConfigDialog::slotNewSourceSelected(int idx_) { kdWarning() << "FetcherConfigDialog::slotNewSourceSelected() - unknown source type" << endl; return; } - m_iconLabel->setPixmap(Fetch::Manager::self()->fetcherIcon(type, KIcon::Panel, 64)); + m_iconLabel->setPixmap(Fetch::Manager::self()->fetcherIcon(type, TDEIcon::Panel, 64)); cw = Fetch::Manager::self()->configWidget(m_stack, type, m_typeCombo->currentText()); if(!cw) { // bad bad bad! |