diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:16:24 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 00:16:24 -0500 |
commit | 267521c81f896cfbfcf4fbff69411d189114e855 (patch) | |
tree | d0e5e7567ad3091c8821b6b1d630dddd5282401b /kmail/simplestringlisteditor.cpp | |
parent | b82f01dcfeabc12580ae11fe8cb2e6a4075da2cc (diff) | |
download | tdepim-267521c81f896cfbfcf4fbff69411d189114e855.tar.gz tdepim-267521c81f896cfbfcf4fbff69411d189114e855.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'kmail/simplestringlisteditor.cpp')
-rw-r--r-- | kmail/simplestringlisteditor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 ); |