From 806f3d2339117d40f6487c4ea01faf2df9ad955c Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Mon, 13 Oct 2014 20:10:12 -0500 Subject: 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 --- ark/mainwindow.cpp | 2 +- ktimer/ktimer.cpp | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ark/mainwindow.cpp b/ark/mainwindow.cpp index 0b3872e..4726989 100644 --- a/ark/mainwindow.cpp +++ b/ark/mainwindow.cpp @@ -109,7 +109,7 @@ MainWindow::~MainWindow() void MainWindow::setupActions() { - newWindowAction = new TDEAction(i18n("New &Window"), "window_new", TDEShortcut(), TQT_TQOBJECT(this), + newWindowAction = new TDEAction(i18n("New &Window"), "window-new", TDEShortcut(), TQT_TQOBJECT(this), TQT_SLOT(file_newWindow()), actionCollection(), "new_window"); newArchAction = KStdAction::openNew(TQT_TQOBJECT(this), TQT_SLOT(file_new()), actionCollection()); diff --git a/ktimer/ktimer.cpp b/ktimer/ktimer.cpp index d8020a6..3a3cef8 100644 --- a/ktimer/ktimer.cpp +++ b/ktimer/ktimer.cpp @@ -75,8 +75,8 @@ public: setText( 1, TQString::number(m_job->delay()) ); switch( m_job->state() ) { - case KTimerJob::Stopped: setPixmap( 2, SmallIcon("player_stop") ); break; - case KTimerJob::Paused: setPixmap( 2, SmallIcon("player_pause") ); break; + case KTimerJob::Stopped: setPixmap( 2, SmallIcon("media-playback-stop") ); break; + case KTimerJob::Paused: setPixmap( 2, SmallIcon("media-playback-pause") ); break; case KTimerJob::Started: setPixmap( 2, SmallIcon("1rightarrow") ); break; } @@ -105,8 +105,8 @@ KTimerPref::KTimerPref( TQWidget *parent, const char *name ) d->jobs.setAutoDelete( true ); // set icons - m_stop->setIconSet( SmallIconSet("player_stop") ); - m_pause->setIconSet( SmallIconSet("player_pause") ); + m_stop->setIconSet( SmallIconSet("media-playback-stop") ); + m_pause->setIconSet( SmallIconSet("media-playback-pause") ); m_start->setIconSet( SmallIconSet("1rightarrow") ); // create tray icon -- cgit v1.2.3