Bring stop, lock, exit, and run icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent 57a7cf0bdc
commit 130a7f36b6

@ -199,7 +199,7 @@ CoverManager::CoverManager()
m_statusBar->addWidget( m_statusLabel = new KSqueezedTextLabel( m_statusBar ), 4 );
m_statusLabel->setIndent( 3 );
m_statusBar->addWidget( m_progressBox = new TQHBox( m_statusBar ), 1, true );
KPushButton *stopButton = new KPushButton( KGuiItem(i18n("Abort"), "stop"), m_progressBox );
KPushButton *stopButton = new KPushButton( KGuiItem(i18n("Abort"), "process-stop"), m_progressBox );
connect( stopButton, TQT_SIGNAL(clicked()), TQT_SLOT(stopFetching()) );
m_progress = new KProgress( m_progressBox );
m_progress->setCenterIndicator( true );

@ -2845,7 +2845,7 @@ PodcastEpisode::showContextMenu( const TQPoint &position )
TDETrader::OfferList offers = TDETrader::self()->query( mimetype->name(), "Type == 'Application'" );
if( offers.empty() || (offers.size()==1 && offers.first()->name()=="Amarok") )
{
menu.insertItem( SmallIconSet( Amarok::icon( "run" ) ), i18n( "&Open With..."), OPEN_WITH );
menu.insertItem( SmallIconSet( Amarok::icon( "system-run" ) ), i18n( "&Open With..."), OPEN_WITH );
}
else
{
@ -2860,8 +2860,8 @@ PodcastEpisode::showContextMenu( const TQPoint &position )
++i;
}
openMenu->insertSeparator();
openMenu->insertItem( SmallIconSet( Amarok::icon( "run" ) ), i18n( "&Other..."), OPEN_WITH );
menu.insertItem( SmallIconSet( Amarok::icon( "run" ) ), i18n("&Open With"), openMenu, OPEN_WITH );
openMenu->insertItem( SmallIconSet( Amarok::icon( "system-run" ) ), i18n( "&Other..."), OPEN_WITH );
menu.insertItem( SmallIconSet( Amarok::icon( "system-run" ) ), i18n("&Open With"), openMenu, OPEN_WITH );
}
if( MediaBrowser::isAvailable() )

Loading…
Cancel
Save