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 /libtdepim | |
parent | b82f01dcfeabc12580ae11fe8cb2e6a4075da2cc (diff) | |
download | tdepim-267521c81f896cfbfcf4fbff69411d189114e855.tar.gz tdepim-267521c81f896cfbfcf4fbff69411d189114e855.zip |
Bring up, down, top, and bottom icons into XDG compliance
Diffstat (limited to 'libtdepim')
-rw-r--r-- | libtdepim/completionordereditor.cpp | 4 | ||||
-rw-r--r-- | libtdepim/kscoringeditor.cpp | 4 | ||||
-rw-r--r-- | libtdepim/statusbarprogresswidget.cpp | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/libtdepim/completionordereditor.cpp b/libtdepim/completionordereditor.cpp index 5bca85cd5..924a669a5 100644 --- a/libtdepim/completionordereditor.cpp +++ b/libtdepim/completionordereditor.cpp @@ -223,12 +223,12 @@ CompletionOrderEditor::CompletionOrderEditor( KPIM::LdapSearch* ldapSearch, TQVBox* upDownBox = new TQVBox( page ); mUpButton = new KPushButton( upDownBox, "mUpButton" ); - mUpButton->setIconSet( BarIconSet( "up", TDEIcon::SizeSmall ) ); + mUpButton->setIconSet( BarIconSet( "go-up", TDEIcon::SizeSmall ) ); mUpButton->setEnabled( false ); // b/c no item is selected yet mUpButton->setFocusPolicy( TQ_StrongFocus ); mDownButton = new KPushButton( upDownBox, "mDownButton" ); - mDownButton->setIconSet( BarIconSet( "down", TDEIcon::SizeSmall ) ); + mDownButton->setIconSet( BarIconSet( "go-down", TDEIcon::SizeSmall ) ); mDownButton->setEnabled( false ); // b/c no item is selected yet mDownButton->setFocusPolicy( TQ_StrongFocus ); diff --git a/libtdepim/kscoringeditor.cpp b/libtdepim/kscoringeditor.cpp index d793c7a1c..628dcb717 100644 --- a/libtdepim/kscoringeditor.cpp +++ b/libtdepim/kscoringeditor.cpp @@ -613,12 +613,12 @@ RuleListWidget::RuleListWidget(KScoringManager *m, bool standalone, TQWidget *p, TQHBoxLayout *btnL = new TQHBoxLayout( topL, KDialog::spacingHint() ); mRuleUp = new TQPushButton( this ); - mRuleUp->setPixmap( BarIcon( "up", TDEIcon::SizeSmall ) ); + mRuleUp->setPixmap( BarIcon( "go-up", TDEIcon::SizeSmall ) ); TQToolTip::add( mRuleUp, i18n("Move rule up") ); btnL->addWidget( mRuleUp ); connect( mRuleUp, TQT_SIGNAL( clicked() ), TQT_SLOT( slotRuleUp() ) ); mRuleDown = new TQPushButton( this ); - mRuleDown->setPixmap( BarIcon( "down", TDEIcon::SizeSmall ) ); + mRuleDown->setPixmap( BarIcon( "go-down", TDEIcon::SizeSmall ) ); TQToolTip::add( mRuleDown, i18n("Move rule down") ); btnL->addWidget( mRuleDown ); connect( mRuleDown, TQT_SIGNAL( clicked() ), TQT_SLOT( slotRuleDown() ) ); diff --git a/libtdepim/statusbarprogresswidget.cpp b/libtdepim/statusbarprogresswidget.cpp index 61dd1bf2b..34f68703e 100644 --- a/libtdepim/statusbarprogresswidget.cpp +++ b/libtdepim/statusbarprogresswidget.cpp @@ -69,7 +69,7 @@ StatusbarProgressWidget::StatusbarProgressWidget( ProgressDialog* progressDialog m_pButton = new TQPushButton( this ); m_pButton->setSizePolicy( TQSizePolicy( TQSizePolicy::Minimum, TQSizePolicy::Minimum ) ); - m_pButton->setPixmap( SmallIcon( "up" ) ); + m_pButton->setPixmap( SmallIcon( "go-up" ) ); box->addWidget( m_pButton ); stack = new TQWidgetStack( this ); stack->setMaximumHeight( fontMetrics().height() ); @@ -282,12 +282,12 @@ void StatusbarProgressWidget::slotProgressDialogVisible( bool b ) { // Update the hide/show button when the detailed one is shown/hidden if ( b ) { - m_pButton->setPixmap( SmallIcon( "down" ) ); + m_pButton->setPixmap( SmallIcon( "go-down" ) ); TQToolTip::remove( m_pButton ); TQToolTip::add( m_pButton, i18n("Hide detailed progress window") ); setMode(); } else { - m_pButton->setPixmap( SmallIcon( "up" ) ); + m_pButton->setPixmap( SmallIcon( "go-up" ) ); TQToolTip::remove( m_pButton ); TQToolTip::add( m_pButton, i18n("Show detailed progress window") ); } |