summaryrefslogtreecommitdiffstats
path: root/tdenetworkmanager/src/tdenetman-connection_editor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdenetworkmanager/src/tdenetman-connection_editor.cpp')
-rw-r--r--tdenetworkmanager/src/tdenetman-connection_editor.cpp20
1 files changed, 10 insertions, 10 deletions
diff --git a/tdenetworkmanager/src/tdenetman-connection_editor.cpp b/tdenetworkmanager/src/tdenetman-connection_editor.cpp
index 4ab62a2..078f3d3 100644
--- a/tdenetworkmanager/src/tdenetman-connection_editor.cpp
+++ b/tdenetworkmanager/src/tdenetman-connection_editor.cpp
@@ -69,16 +69,16 @@ class ConnectionListViewItem : public TDEListViewItem
setText(1, TDENetworkConnectionManager::friendlyConnectionTypeName(conn->type()));
// TODO: Move to a Factory
if (conn->type() == TDENetworkConnectionType::WiredEthernet) {
- setPixmap(0, TDEGlobal::iconLoader()->loadIcon("wired", KIcon::Small));
+ setPixmap(0, TDEGlobal::iconLoader()->loadIcon("wired", TDEIcon::Small));
}
else if (conn->type() == TDENetworkConnectionType::WiFi) {
- setPixmap(0, TDEGlobal::iconLoader()->loadIcon("wireless", KIcon::Small));
+ setPixmap(0, TDEGlobal::iconLoader()->loadIcon("wireless", TDEIcon::Small));
}
else if (conn->type() == TDENetworkConnectionType::VPN) {
- setPixmap(0, TDEGlobal::iconLoader()->loadIcon("encrypted", KIcon::Small));
+ setPixmap(0, TDEGlobal::iconLoader()->loadIcon("encrypted", TDEIcon::Small));
}
else {
- setPixmap(0, TDEGlobal::iconLoader()->loadIcon("help", KIcon::Small));
+ setPixmap(0, TDEGlobal::iconLoader()->loadIcon("help", TDEIcon::Small));
}
}
}
@@ -101,17 +101,17 @@ ConnectionEditorImpl::ConnectionEditorImpl(TQWidget* parent, const char* name, b
// pbEdit->hide();
- pbNew->setIconSet(TDEGlobal::iconLoader()->loadIcon("add", KIcon::Small));
- pbDelete->setIconSet(TDEGlobal::iconLoader()->loadIcon("remove", KIcon::Small));
- pbEdit->setIconSet(TDEGlobal::iconLoader()->loadIcon("edit", KIcon::Small));
+ pbNew->setIconSet(TDEGlobal::iconLoader()->loadIcon("add", TDEIcon::Small));
+ pbDelete->setIconSet(TDEGlobal::iconLoader()->loadIcon("remove", TDEIcon::Small));
+ pbEdit->setIconSet(TDEGlobal::iconLoader()->loadIcon("edit", TDEIcon::Small));
TQPopupMenu* popup = new TQPopupMenu(pbNew);
// TODO: move to a factory class
- popup->insertItem(TDEGlobal::iconLoader()->loadIcon("wireless", KIcon::Small), i18n("Wireless"), this, TQT_SLOT(slotNewWirelessConnection()));
- popup->insertItem(TDEGlobal::iconLoader()->loadIcon("wired", KIcon::Small), i18n("Wired"), this, TQT_SLOT(slotNewWiredConnection()));
+ popup->insertItem(TDEGlobal::iconLoader()->loadIcon("wireless", TDEIcon::Small), i18n("Wireless"), this, TQT_SLOT(slotNewWirelessConnection()));
+ popup->insertItem(TDEGlobal::iconLoader()->loadIcon("wired", TDEIcon::Small), i18n("Wired"), this, TQT_SLOT(slotNewWiredConnection()));
// if (!VPNManager::getVPNServices().isEmpty()) {
- popup->insertItem(TDEGlobal::iconLoader()->loadIcon("encrypted", KIcon::Small), i18n("VPN"), this, TQT_SLOT(slotNewVPNConnection()));
+ popup->insertItem(TDEGlobal::iconLoader()->loadIcon("encrypted", TDEIcon::Small), i18n("VPN"), this, TQT_SLOT(slotNewVPNConnection()));
// }
pbNew->setPopup(popup);