diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-04 14:19:04 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-02-04 14:19:04 -0600 |
commit | 34ec7cf1e70300eb43f3822ce3261893f9f8ace6 (patch) | |
tree | c7fe414e406e16a97e53d9eed0979d9ea85d2915 /kdelirc/kcmlirc | |
parent | e6b6046f50ea600fc78e00071e2a79e3c8c08ccd (diff) | |
download | tdeutils-34ec7cf1e70300eb43f3822ce3261893f9f8ace6.tar.gz tdeutils-34ec7cf1e70300eb43f3822ce3261893f9f8ace6.zip |
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'kdelirc/kcmlirc')
-rw-r--r-- | kdelirc/kcmlirc/editmode.cpp | 2 | ||||
-rw-r--r-- | kdelirc/kcmlirc/editmodebase.ui | 2 | ||||
-rw-r--r-- | kdelirc/kcmlirc/kcmlirc.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/kdelirc/kcmlirc/editmode.cpp b/kdelirc/kcmlirc/editmode.cpp index aad27da..a197bb7 100644 --- a/kdelirc/kcmlirc/editmode.cpp +++ b/kdelirc/kcmlirc/editmode.cpp @@ -18,7 +18,7 @@ EditMode::EditMode(TQWidget *parent, const char *name, bool modal, WFlags fl) : EditModeBase(parent, name, modal, fl) { - theIcon->setIconType(KIcon::Panel, KIcon::Any); + theIcon->setIconType(TDEIcon::Panel, TDEIcon::Any); } EditMode::~EditMode() diff --git a/kdelirc/kcmlirc/editmodebase.ui b/kdelirc/kcmlirc/editmodebase.ui index 8195eaa..b59533b 100644 --- a/kdelirc/kcmlirc/editmodebase.ui +++ b/kdelirc/kcmlirc/editmodebase.ui @@ -85,7 +85,7 @@ </size> </property> </spacer> - <widget class="KIconButton"> + <widget class="TDEIconButton"> <property name="name"> <cstring>theIcon</cstring> </property> diff --git a/kdelirc/kcmlirc/kcmlirc.cpp b/kdelirc/kcmlirc/kcmlirc.cpp index fc42db5..3858937 100644 --- a/kdelirc/kcmlirc/kcmlirc.cpp +++ b/kdelirc/kcmlirc/kcmlirc.cpp @@ -413,7 +413,7 @@ void KCMLirc::updateModes() { Mode mode = allModes.getMode(*i, ""); TQListViewItem *a = new TDEListViewItem(theKCMLircBase->theModes, RemoteServer::remoteServer()->getRemoteName(*i), allModes.isDefault(mode) ? "Default" : "", mode.iconFile().isNull() ? "" : ""); if(!mode.iconFile().isNull()) - a->setPixmap(2, KIconLoader().loadIcon(mode.iconFile(), KIcon::Panel)); + a->setPixmap(2, TDEIconLoader().loadIcon(mode.iconFile(), TDEIcon::Panel)); modeMap[a] = mode; // the null mode if(modeMap[a] == oldCurrent) { a->setSelected(true); theKCMLircBase->theModes->setCurrentItem(a); } a->setOpen(true); @@ -422,7 +422,7 @@ void KCMLirc::updateModes() if(!(*j).name().isEmpty()) { TQListViewItem *b = new TDEListViewItem(a, (*j).name(), allModes.isDefault(*j) ? i18n("Default") : "", (*j).iconFile().isNull() ? "" : ""); if(!(*j).iconFile().isNull()) - b->setPixmap(2, KIconLoader().loadIcon((*j).iconFile(), KIcon::Panel)); + b->setPixmap(2, TDEIconLoader().loadIcon((*j).iconFile(), TDEIcon::Panel)); modeMap[b] = *j; if(*j == oldCurrent) { b->setSelected(true); theKCMLircBase->theModes->setCurrentItem(b); } } |