diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:12 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-13 20:10:12 -0500 |
commit | 3774bd2643f8009fe6046bb721bccb3dce7bb92b (patch) | |
tree | de5bcde3a2c09526331608ae1faf7d95bc146e9c /kalarm/sounddlg.cpp | |
parent | 58964048b37c52bbb841d7ec9386a75d9bf8fbc7 (diff) | |
download | tdepim-3774bd2643f8009fe6046bb721bccb3dce7bb92b.tar.gz tdepim-3774bd2643f8009fe6046bb721bccb3dce7bb92b.zip |
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
Diffstat (limited to 'kalarm/sounddlg.cpp')
-rw-r--r-- | kalarm/sounddlg.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 |