diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:59 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 15:43:59 -0500 |
commit | 3a884685ff7e33af277d54b476061e9a5b3003a6 (patch) | |
tree | 427ee2fc6c28e6d2e2ca5ed9588a2b85f128422b /ksim/generalprefs.cpp | |
parent | 44074435c675c743e130b7cee941c8db3c3a50bf (diff) | |
download | tdeutils-3a884685ff7e33af277d54b476061e9a5b3003a6.tar.gz tdeutils-3a884685ff7e33af277d54b476061e9a5b3003a6.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 'ksim/generalprefs.cpp')
-rw-r--r-- | ksim/generalprefs.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ksim/generalprefs.cpp b/ksim/generalprefs.cpp index 4306ad6..42148d6 100644 --- a/ksim/generalprefs.cpp +++ b/ksim/generalprefs.cpp @@ -160,8 +160,8 @@ void KSim::ClockPrefs::readConfig(KSim::Config *config) KSim::UptimePrefs::UptimePrefs(TQWidget *parent, const char *name) : TQWidget(parent, name) { - m_addIcon = SmallIconSet("filenew"); - m_removeIcon = SmallIconSet("editdelete"); + m_addIcon = SmallIconSet("document-new"); + m_removeIcon = SmallIconSet("edit-delete"); m_mainLayout = new TQVBoxLayout(this); m_mainLayout->setSpacing(6); @@ -297,8 +297,8 @@ void KSim::UptimePrefs::removeUptimeItem() KSim::MemoryPrefs::MemoryPrefs(TQWidget *parent, const char *name) : TQWidget(parent, name) { - m_addIcon = SmallIconSet("filenew"); - m_removeIcon = SmallIconSet("editdelete"); + m_addIcon = SmallIconSet("document-new"); + m_removeIcon = SmallIconSet("edit-delete"); m_mainLayout = new TQVBoxLayout(this); m_mainLayout->setSpacing(6); @@ -445,8 +445,8 @@ void KSim::MemoryPrefs::removeMemoryItem() KSim::SwapPrefs::SwapPrefs(TQWidget *parent, const char *name) : TQWidget(parent, name) { - m_addIcon = SmallIconSet("filenew"); - m_removeIcon = SmallIconSet("editdelete"); + m_addIcon = SmallIconSet("document-new"); + m_removeIcon = SmallIconSet("edit-delete"); m_mainLayout = new TQVBoxLayout(this); m_mainLayout->setSpacing(6); |