Fix remaining issues from mimetype icon rename

pull/1/head r14.0.0
Timothy Pearson 10 years ago
parent 30d9349b01
commit ac93bc384e

@ -393,7 +393,7 @@ void MainWindow::initMainView()
// Add some sidebars that can't be added before the session manager is created
m_bottomSidebar->addSidebar(new KFTPWidgets::ThreadView(0, "threads"), i18n("Threads"), "socket");
m_bottomSidebar->addSidebar(KFTPSession::Manager::self()->getStatTabs(), i18n("Log"), "info");
m_bottomSidebar->addSidebar(KFTPSession::Manager::self()->getStatTabs(), i18n("Log"), "application-vnd.tde.info");
m_bottomSidebar->addSidebar(m_trafficGraph, i18n("Traffic"), "share");
}

@ -72,7 +72,7 @@ FailedTransferItem::FailedTransferItem(KFTPQueue::FailedTransfer *transfer, TQLi
setText(1, TDEIO::convertSize(transfer->getTransfer()->getActualSize()));
setText(2, TQString::number(transfer->getTransfer()->getId()));
setPixmap(0, loadSmallPixmap("info"));
setPixmap(0, loadSmallPixmap("application-vnd.tde.info"));
}
TDEActionCollection *FailedTransfers::actionCollection()

@ -104,7 +104,7 @@ void SystemTray::showBalloon(const TQString &text)
delete m_balloon;
}
m_balloon = new Balloon("<qt><nobr><b>KFTPGrabber</b><br>" + text + "</nobr></qt>", "info");
m_balloon = new Balloon("<qt><nobr><b>KFTPGrabber</b><br>" + text + "</nobr></qt>", "application-vnd.tde.info");
m_balloon->setAnchor(mapToGlobal(pos()));
m_balloon->show();
KWin::setOnAllDesktops(m_balloon->winId() , true);

Loading…
Cancel
Save