From 267521c81f896cfbfcf4fbff69411d189114e855 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 00:16:24 -0500 Subject: Bring up, down, top, and bottom icons into XDG compliance --- libtdepim/statusbarprogresswidget.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'libtdepim/statusbarprogresswidget.cpp') 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") ); } -- cgit v1.2.1