summaryrefslogtreecommitdiffstats
path: root/noatun-plugins
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-04 14:13:27 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-02-04 14:13:27 -0600
commitf7b7b822a75853f438ed17eabd0fe7f2c0999417 (patch)
treea4808bd1164af8e7a1b6b82b50cdca65b710d00c /noatun-plugins
parentcca546ea62fff60a89ff684a17dca631d95f6cf9 (diff)
downloadtdeaddons-f7b7b822a75853f438ed17eabd0fe7f2c0999417.tar.gz
tdeaddons-f7b7b822a75853f438ed17eabd0fe7f2c0999417.zip
Rename KIcon to enhance compatibility with KDE4
Diffstat (limited to 'noatun-plugins')
-rw-r--r--noatun-plugins/alarm/wakeup.cpp2
-rw-r--r--noatun-plugins/oblique/cmodule.cpp10
2 files changed, 6 insertions, 6 deletions
diff --git a/noatun-plugins/alarm/wakeup.cpp b/noatun-plugins/alarm/wakeup.cpp
index 55d5ac6..daa532e 100644
--- a/noatun-plugins/alarm/wakeup.cpp
+++ b/noatun-plugins/alarm/wakeup.cpp
@@ -208,7 +208,7 @@ WakeupPrefs::WakeupPrefs( TQObject *parent ) :
grid->addWidget (choosemin,0,2,TQt::AlignLeft);
applyall = new TQPushButton (this,"applyall");
- applyall->setPixmap( BarIcon("down", KIcon::SizeSmall) );
+ applyall->setPixmap( BarIcon("down", TDEIcon::SizeSmall) );
applyall->setSizePolicy( TQSizePolicy( TQSizePolicy::Fixed,
TQSizePolicy::Fixed,
applyall->sizePolicy().hasHeightForWidth()) );
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"));