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/statusbarprogresswidget.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 'libtdepim/statusbarprogresswidget.cpp')
-rw-r--r-- | libtdepim/statusbarprogresswidget.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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") ); } |