summaryrefslogtreecommitdiffstats
path: root/kalarm
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:12 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2014-10-13 20:10:12 -0500
commit3774bd2643f8009fe6046bb721bccb3dce7bb92b (patch)
treede5bcde3a2c09526331608ae1faf7d95bc146e9c /kalarm
parent58964048b37c52bbb841d7ec9386a75d9bf8fbc7 (diff)
downloadtdepim-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')
-rw-r--r--kalarm/messagewin.cpp2
-rw-r--r--kalarm/sounddlg.cpp6
2 files changed, 4 insertions, 4 deletions
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