diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:55 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:55 -0500 |
commit | 042168b31acf269d87d14527197a218c2fc20a0f (patch) | |
tree | 90eba8d395910154a0cf10be5c988bbfca91785b /noatun-plugins/oblique | |
parent | 873cb9fc70c1eefce5325a45e466d2be342025b2 (diff) | |
download | tdeaddons-042168b31acf269d87d14527197a218c2fc20a0f.tar.gz tdeaddons-042168b31acf269d87d14527197a218c2fc20a0f.zip |
Bring filenew, fileopen, fileprint, filequickprint, filesave, filesaveas, fileclose, editclear, editcopy, editcut, editdelete, editpaste, folder_new, and gohome icons into XDG compliance
Diffstat (limited to 'noatun-plugins/oblique')
-rw-r--r-- | noatun-plugins/oblique/cmodule.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/noatun-plugins/oblique/cmodule.cpp b/noatun-plugins/oblique/cmodule.cpp index ce5caea..044119e 100644 --- a/noatun-plugins/oblique/cmodule.cpp +++ b/noatun-plugins/oblique/cmodule.cpp @@ -51,17 +51,17 @@ SchemaConfig::SchemaConfig(TQWidget *parent, Oblique *oblique) TQT_SLOT(selectSchema(const TQString&)) ); - mAdd = new TQPushButton(BarIconSet("filenew"), 0, box); + mAdd = new TQPushButton(BarIconSet("document-new"), 0, box); mAdd->setFixedWidth(mAdd->height()); TQToolTip::add(mAdd, i18n("Create new schema")); connect(mAdd, TQT_SIGNAL(clicked()), TQT_SLOT(newSchema())); - mRemove = new TQPushButton(BarIconSet("editdelete"), 0, box); + mRemove = new TQPushButton(BarIconSet("edit-delete"), 0, box); mRemove->setFixedWidth(mRemove->height()); TQToolTip::add(mRemove, i18n("Remove this schema")); connect(mRemove, TQT_SIGNAL(clicked()), TQT_SLOT(removeSchema())); - mCopy = new TQPushButton(BarIconSet("editcopy"), 0, box); + mCopy = new TQPushButton(BarIconSet("edit-copy"), 0, box); mCopy->setFixedWidth(mCopy->height()); TQToolTip::add(mCopy, i18n("Copy this schema")); connect(mCopy, TQT_SIGNAL(clicked()), TQT_SLOT(copySchema())); @@ -104,7 +104,7 @@ SchemaConfig::SchemaConfig(TQWidget *parent, Oblique *oblique) 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", TDEIcon::SizeSmall), "", buttons); + mRemoveSelf = new TQPushButton(BarIconSet("document-new", TDEIcon::SizeSmall), "", buttons); mRemoveSelf->setFixedWidth(mRemoveSelf->height()); connect(mRemoveSelf, TQT_SIGNAL(clicked()), TQT_SLOT(removeSelf())); TQToolTip::add(mRemoveSelf, i18n("Remove the selected item")); @@ -525,7 +525,7 @@ SliceConfig::SliceConfig(TQWidget *parent, Oblique *oblique) connect(mAdd, TQT_SIGNAL(clicked()), TQT_SLOT(addSibling())); TQToolTip::add(mAdd, i18n("Create a new item")); - mRemove = new TQPushButton(BarIconSet("filenew", TDEIcon::SizeSmall), "", buttons); + mRemove = new TQPushButton(BarIconSet("document-new", TDEIcon::SizeSmall), "", buttons); mRemove->setFixedWidth(mRemove->height()); connect(mRemove, TQT_SIGNAL(clicked()), TQT_SLOT(removeSelf())); TQToolTip::add(mRemove, i18n("Remove the selected item")); |