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 3a884685ff
commit 806f3d2339

@ -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());

@ -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

Loading…
Cancel
Save