From 3774bd2643f8009fe6046bb721bccb3dce7bb92b 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 --- kalarm/messagewin.cpp | 2 +- kalarm/sounddlg.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'kalarm') diff --git a/kalarm/messagewin.cpp b/kalarm/messagewin.cpp index 34814cbc1..293d92b02 100644 --- a/kalarm/messagewin.cpp +++ b/kalarm/messagewin.cpp @@ -546,7 +546,7 @@ void MessageWin::initView() if (!mAudioFile.isEmpty() && (mVolume || mFadeVolume > 0)) { // Silence button to stop sound repetition - TQPixmap pixmap = MainBarIcon("player_stop"); + TQPixmap pixmap = MainBarIcon("media-playback-stop"); mSilenceButton = new TQPushButton(topWidget); mSilenceButton->setPixmap(pixmap); mSilenceButton->setFixedSize(mSilenceButton->sizeHint()); diff --git a/kalarm/sounddlg.cpp b/kalarm/sounddlg.cpp index 6cd2301aa..cb539512f 100644 --- a/kalarm/sounddlg.cpp +++ b/kalarm/sounddlg.cpp @@ -84,7 +84,7 @@ SoundDlg::SoundDlg(const TQString& file, float volume, float fadeVolume, int fad TQHBox* box = new TQHBox(page); layout->addWidget(box); mFilePlay = new TQPushButton(box); - mFilePlay->setPixmap(SmallIcon("player_play")); + mFilePlay->setPixmap(SmallIcon("media-playback-start")); mFilePlay->setFixedSize(mFilePlay->sizeHint()); connect(mFilePlay, TQT_SIGNAL(clicked()), TQT_SLOT(playSound())); TQToolTip::add(mFilePlay, i18n("Test the sound")); @@ -310,7 +310,7 @@ void SoundDlg::playSound() Arts::SoundServerV2 sserver = aserver.server(); KDE::PlayObjectFactory factory(sserver); mPlayObject = factory.createPlayObject(mLocalAudioFile, true); - mFilePlay->setPixmap(SmallIcon("player_stop")); + mFilePlay->setPixmap(SmallIcon("media-playback-stop")); TQToolTip::add(mFilePlay, i18n("Stop sound")); TQWhatsThis::add(mFilePlay, i18n("Stop playing the sound")); connect(mPlayObject, TQT_SIGNAL(playObjectCreated()), TQT_SLOT(checkAudioPlay())); @@ -372,7 +372,7 @@ void SoundDlg::stopPlay() TDEIO::NetAccess::removeTempFile(mLocalAudioFile); // removes it only if it IS a temporary file mLocalAudioFile = TQString(); } - mFilePlay->setPixmap(SmallIcon("player_play")); + mFilePlay->setPixmap(SmallIcon("media-playback-start")); TQToolTip::add(mFilePlay, i18n("Test the sound")); TQWhatsThis::add(mFilePlay, i18n("Play the selected sound file.")); #endif -- cgit v1.2.1