From f7b7b822a75853f438ed17eabd0fe7f2c0999417 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 4 Feb 2013 14:13:27 -0600 Subject: Rename KIcon to enhance compatibility with KDE4 --- noatun-plugins/oblique/cmodule.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'noatun-plugins/oblique/cmodule.cpp') diff --git a/noatun-plugins/oblique/cmodule.cpp b/noatun-plugins/oblique/cmodule.cpp index 57e3527..7882ff4 100644 --- a/noatun-plugins/oblique/cmodule.cpp +++ b/noatun-plugins/oblique/cmodule.cpp @@ -94,17 +94,17 @@ SchemaConfig::SchemaConfig(TQWidget *parent, Oblique *oblique) TQVBox *buttons = new TQVBox(middle); - mAddSibling = new TQPushButton(BarIconSet("1rightarrow", KIcon::SizeSmall), "",buttons); + mAddSibling = new TQPushButton(BarIconSet("1rightarrow", TDEIcon::SizeSmall), "",buttons); mAddSibling->setFixedWidth(mAddSibling->height()); connect(mAddSibling, TQT_SIGNAL(clicked()), TQT_SLOT(addSibling())); TQToolTip::add(mAddSibling, i18n("Create a new item after the selected one")); - mAddChild = new TQPushButton(BarIconSet("2rightarrow", KIcon::SizeSmall), "", buttons); + mAddChild = new TQPushButton(BarIconSet("2rightarrow", TDEIcon::SizeSmall), "", buttons); mAddChild->setFixedWidth(mAddChild->height()); connect(mAddChild, TQT_SIGNAL(clicked()), TQT_SLOT(addChild())); TQToolTip::add(mAddChild, i18n("Create a new child item under the selected one")); - mRemoveSelf = new TQPushButton(BarIconSet("filenew", KIcon::SizeSmall), "", buttons); + mRemoveSelf = new TQPushButton(BarIconSet("filenew", TDEIcon::SizeSmall), "", buttons); mRemoveSelf->setFixedWidth(mRemoveSelf->height()); connect(mRemoveSelf, TQT_SIGNAL(clicked()), TQT_SLOT(removeSelf())); TQToolTip::add(mRemoveSelf, i18n("Remove the selected item")); @@ -520,12 +520,12 @@ SliceConfig::SliceConfig(TQWidget *parent, Oblique *oblique) TQVBox *buttons = new TQVBox(middle); - mAdd = new TQPushButton(BarIconSet("1rightarrow", KIcon::SizeSmall), "",buttons); + mAdd = new TQPushButton(BarIconSet("1rightarrow", TDEIcon::SizeSmall), "",buttons); mAdd->setFixedWidth(mAdd->height()); connect(mAdd, TQT_SIGNAL(clicked()), TQT_SLOT(addSibling())); TQToolTip::add(mAdd, i18n("Create a new item")); - mRemove = new TQPushButton(BarIconSet("filenew", KIcon::SizeSmall), "", buttons); + mRemove = new TQPushButton(BarIconSet("filenew", TDEIcon::SizeSmall), "", buttons); mRemove->setFixedWidth(mRemove->height()); connect(mRemove, TQT_SIGNAL(clicked()), TQT_SLOT(removeSelf())); TQToolTip::add(mRemove, i18n("Remove the selected item")); -- cgit v1.2.1