diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:16:45 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:16:45 -0500 |
commit | a2541c112aa09e2f20ae10006d4aa70e61c31761 (patch) | |
tree | 823126918df2203eb642141f1327132da845c2dd /kimagemapeditor/arealistview.cpp | |
parent | b4de4028d650dadc18755f6d4f0c268e53051c59 (diff) | |
download | tdewebdev-a2541c112aa09e2f20ae10006d4aa70e61c31761.tar.gz tdewebdev-a2541c112aa09e2f20ae10006d4aa70e61c31761.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'kimagemapeditor/arealistview.cpp')
-rw-r--r-- | kimagemapeditor/arealistview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kimagemapeditor/arealistview.cpp b/kimagemapeditor/arealistview.cpp index f285999b..568d8edd 100644 --- a/kimagemapeditor/arealistview.cpp +++ b/kimagemapeditor/arealistview.cpp @@ -52,10 +52,10 @@ AreaListView::AreaListView(TQWidget *parent, const char *name) TQHBox *hbox= new TQHBox(this); upBtn= new TQPushButton("",hbox); - upBtn->setIconSet(SmallIconSet("up")); + upBtn->setIconSet(SmallIconSet("go-up")); downBtn= new TQPushButton("",hbox); - downBtn->setIconSet(SmallIconSet("down")); + downBtn->setIconSet(SmallIconSet("go-down")); } |