Bring mail_forward, mail_new, mail_replyall, mail_reply, mail_send, player_pause, player_play, player_stop, player_rew, player_fwd, player_start, player_end, rotate_ccw, rotate_cw, window_fullscreen, window_nofullscreen, window_new, viewmagfit, viewmag+, viewmag1, and viewmag- icons into XDG compliance

pull/1/head
Timothy Pearson 10 years ago
parent da6c5588f2
commit d2bef4f21a

@ -111,7 +111,7 @@ void DccTransferPanel::initGUI()
// convenience, undeffed below again to avoid name clashes
#define icon(s) TDEGlobal::iconLoader()->loadIconSet( s, TDEIcon::Small )
m_buttonAccept = new TQPushButton(icon("player_play"), i18n("Accept"), buttonsBox, "start_dcc");
m_buttonAccept = new TQPushButton(icon("media-playback-start"), i18n("Accept"), buttonsBox, "start_dcc");
m_buttonAbort = new TQPushButton(icon("process-stop"), i18n("Abort"), buttonsBox, "abort_dcc");
m_buttonClear = new TQPushButton(icon("edit-delete"), i18n("Clear"), buttonsBox, "clear_dcc");
m_buttonOpen = new TQPushButton(icon("exec"), i18n("Open File"), buttonsBox, "open_dcc_file");
@ -138,7 +138,7 @@ void DccTransferPanel::initGUI()
m_popup->insertItem( i18n("&Select All Items"), Popup::SelectAll);
m_popup->insertItem( i18n("S&elect All Completed Items"), Popup::SelectAllCompleted);
m_popup->insertSeparator(); // -----
m_popup->insertItem(icon("player_play"), i18n("&Accept"), Popup::Accept);
m_popup->insertItem(icon("media-playback-start"), i18n("&Accept"), Popup::Accept);
m_popup->insertItem(icon("process-stop"), i18n("A&bort"), Popup::Abort);
m_popup->insertSeparator(); // -----
// FIXME: make it neat

@ -280,7 +280,7 @@ TQPixmap DccTransferPanelItem::getStatusIcon() const
switch ( m_transfer->getStatus() )
{
case DccTransfer::Queued:
icon = "player_stop";
icon = "media-playback-stop";
break;
case DccTransfer::Preparing:
case DccTransfer::WaitingRemote:
@ -288,7 +288,7 @@ TQPixmap DccTransferPanelItem::getStatusIcon() const
icon = "goto";
break;
case DccTransfer::Transferring:
icon = "player_play";
icon = "media-playback-start";
break;
case DccTransfer::Done:
icon = "ok";

@ -46,7 +46,7 @@ Highlight_Config::Highlight_Config(TQWidget* parent, const char* name)
highlightListView->setSorting(-1);
highlightListView->header()->setMovingEnabled(false);
soundPlayBtn->setIconSet(SmallIconSet( "player_play" ));
soundPlayBtn->setIconSet(SmallIconSet( "media-playback-start" ));
soundURL->setCaption(i18n("Select Sound File"));
// This code was copied from KNotifyWidget::openSoundDialog() (knotifydialog.cpp) [it's under LGPL v2]

Loading…
Cancel
Save