From 267521c81f896cfbfcf4fbff69411d189114e855 Mon Sep 17 00:00:00 2001
From: Timothy Pearson <kb9vqf@pearsoncomputing.net>
Date: Mon, 13 Oct 2014 00:16:24 -0500
Subject: Bring up, down, top, and bottom icons into XDG compliance

---
 kmail/kmfilterdlg.cpp            | 8 ++++----
 kmail/simplestringlisteditor.cpp | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)

(limited to 'kmail')

diff --git a/kmail/kmfilterdlg.cpp b/kmail/kmfilterdlg.cpp
index f81a7071b..29d62bda6 100644
--- a/kmail/kmfilterdlg.cpp
+++ b/kmail/kmfilterdlg.cpp
@@ -594,19 +594,19 @@ KMFilterListBox::KMFilterListBox( const TQString & title, TQWidget *parent, cons
   hb->setSpacing(4);
   mBtnTop = new KPushButton( TQString(), hb );
   mBtnTop->setAutoRepeat( true );
-  mBtnTop->setIconSet( BarIconSet( "top", TDEIcon::SizeSmall ) );
+  mBtnTop->setIconSet( BarIconSet( "go-top", TDEIcon::SizeSmall ) );
   mBtnTop->setMinimumSize( mBtnTop->sizeHint() * 1.2 );
   mBtnUp = new KPushButton( TQString(), hb );
   mBtnUp->setAutoRepeat( true );
-  mBtnUp->setIconSet( BarIconSet( "up", TDEIcon::SizeSmall ) );
+  mBtnUp->setIconSet( BarIconSet( "go-up", TDEIcon::SizeSmall ) );
   mBtnUp->setMinimumSize( mBtnUp->sizeHint() * 1.2 );
   mBtnDown = new KPushButton( TQString(), hb );
   mBtnDown->setAutoRepeat( true );
-  mBtnDown->setIconSet( BarIconSet( "down", TDEIcon::SizeSmall ) );
+  mBtnDown->setIconSet( BarIconSet( "go-down", TDEIcon::SizeSmall ) );
   mBtnDown->setMinimumSize( mBtnDown->sizeHint() * 1.2 );
   mBtnBot = new KPushButton( TQString(), hb );
   mBtnBot->setAutoRepeat( true );
-  mBtnBot->setIconSet( BarIconSet( "bottom", TDEIcon::SizeSmall ) );
+  mBtnBot->setIconSet( BarIconSet( "go-bottom", TDEIcon::SizeSmall ) );
   mBtnBot->setMinimumSize( mBtnBot->sizeHint() * 1.2 );
   TQToolTip::add( mBtnTop, i18n("Top") );
   TQToolTip::add( mBtnUp, i18n("Up") );
diff --git a/kmail/simplestringlisteditor.cpp b/kmail/simplestringlisteditor.cpp
index b0602428f..b96a1ad89 100644
--- a/kmail/simplestringlisteditor.cpp
+++ b/kmail/simplestringlisteditor.cpp
@@ -122,7 +122,7 @@ SimpleStringListEditor::SimpleStringListEditor( TQWidget * parent,
       kdDebug(5006) << "Are you sure you want to use an Up button "
 	"without a Down button??" << endl;
     mUpButton = new KPushButton( TQString(), this );
-    mUpButton->setIconSet( BarIconSet( "up", TDEIcon::SizeSmall ) );
+    mUpButton->setIconSet( BarIconSet( "go-up", TDEIcon::SizeSmall ) );
     mUpButton->setAutoDefault( false );
     mUpButton->setEnabled( false ); // no selection yet
     vlay->addWidget( mUpButton );
@@ -135,7 +135,7 @@ SimpleStringListEditor::SimpleStringListEditor( TQWidget * parent,
       kdDebug(5006) << "Are you sure you want to use a Down button "
 	"without an Up button??" << endl;
     mDownButton = new KPushButton( TQString(), this );
-    mDownButton->setIconSet( BarIconSet( "down", TDEIcon::SizeSmall ) );
+    mDownButton->setIconSet( BarIconSet( "go-down", TDEIcon::SizeSmall ) );
     mDownButton->setAutoDefault( false );
     mDownButton->setEnabled( false ); // no selection yet
     vlay->addWidget( mDownButton );
-- 
cgit v1.2.1