summaryrefslogtreecommitdiffstats
path: root/src/configenvironmentpage.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:13:24 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 00:13:24 -0500
commit78767673c45a197968d62ba5745baf7bb5558b9c (patch)
treeb8d8c2817d60f916d608f1b6ec3e97cbe152c0e3 /src/configenvironmentpage.cpp
parent58fa1cb48051a1a3704e398d1f264ff199efda20 (diff)
downloadsoundkonverter-78767673c45a197968d62ba5745baf7bb5558b9c.tar.gz
soundkonverter-78767673c45a197968d62ba5745baf7bb5558b9c.zip
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'src/configenvironmentpage.cpp')
-rwxr-xr-xsrc/configenvironmentpage.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configenvironmentpage.cpp b/src/configenvironmentpage.cpp
index 318db5c..3d5caf6 100755
--- a/src/configenvironmentpage.cpp
+++ b/src/configenvironmentpage.cpp
@@ -45,7 +45,7 @@ ConfigEnvironmentPage::ConfigEnvironmentPage( Config* _config, TQMap<TQString, T
TQVBoxLayout* directoriesMiddleBox = new TQVBoxLayout( directoriesBox );
pDirUp = new KPushButton( "", parent, "pDirUp" );
- pDirUp->setPixmap( iconLoader->loadIcon("up",TDEIcon::Toolbar) );
+ pDirUp->setPixmap( iconLoader->loadIcon("go-up",TDEIcon::Toolbar) );
pDirUp->setEnabled( false );
TQToolTip::add( pDirUp, i18n("Move selected directory one position up.\nThis effects which backend will be chosen, if there are several versions.") );
directoriesMiddleBox->addWidget( pDirUp );
@@ -55,7 +55,7 @@ ConfigEnvironmentPage::ConfigEnvironmentPage( Config* _config, TQMap<TQString, T
directoriesMiddleBox->addStretch();
pDirDown = new KPushButton( "", parent, "pDirDown" );
- pDirDown->setPixmap( iconLoader->loadIcon("down",TDEIcon::Toolbar) );
+ pDirDown->setPixmap( iconLoader->loadIcon("go-down",TDEIcon::Toolbar) );
pDirDown->setEnabled( false );
TQToolTip::add( pDirDown, i18n("Move selected directory one position down.\nThis effects which backend will be chosen, if there are several versions.") );
directoriesMiddleBox->addWidget( pDirDown );