diff options
author | Timothy Pearson <[email protected]> | 2014-10-13 15:43:51 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2014-10-13 15:43:51 -0500 |
commit | d5e5197316509015cd3754ba2503ede96af751c4 (patch) | |
tree | c0b287aecb5b56016121dcfd8ae843e52a9dde17 /src/gui/stringmapdialog.cpp | |
parent | fbdff8abf704f998381daa44e0515eac04531f21 (diff) | |
download | tellico-d5e5197316509015cd3754ba2503ede96af751c4.tar.gz tellico-d5e5197316509015cd3754ba2503ede96af751c4.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 'src/gui/stringmapdialog.cpp')
-rw-r--r-- | src/gui/stringmapdialog.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/stringmapdialog.cpp b/src/gui/stringmapdialog.cpp index 85030d4..e580a8d 100644 --- a/src/gui/stringmapdialog.cpp +++ b/src/gui/stringmapdialog.cpp @@ -55,9 +55,9 @@ StringMapDialog::StringMapDialog(const TQMap<TQString, TQString>& map_, TQWidget KButtonBox* bb = new KButtonBox(box); bb->addStretch(); TQPushButton* btn = bb->addButton(i18n("&Set"), TQT_TQOBJECT(this), TQT_SLOT(slotAdd())); - btn->setIconSet(BarIcon(TQString::fromLatin1("filenew"), TDEIcon::SizeSmall)); + btn->setIconSet(BarIcon(TQString::fromLatin1("document-new"), TDEIcon::SizeSmall)); btn = bb->addButton(i18n("&Delete"), TQT_TQOBJECT(this), TQT_SLOT(slotDelete())); - btn->setIconSet(BarIcon(TQString::fromLatin1("editdelete"), TDEIcon::SizeSmall)); + btn->setIconSet(BarIcon(TQString::fromLatin1("edit-delete"), TDEIcon::SizeSmall)); l->addWidget(box); l->addStretch(1); |