playPauseButton doesn't always exist, crash--
svn path=/trunk/KDE/kdelibs/; revision=1002603
This commit is contained in:
parent
a3a97eec7d
commit
9e278bbe78
@ -162,10 +162,12 @@ void VideoWidgetPrivate::stateChanged(Phonon::State newState, Phonon::State oldS
|
||||
{
|
||||
Q_UNUSED(oldState)
|
||||
|
||||
if (newState == Phonon::PlayingState) {
|
||||
playPauseButton->setIcon("media-playback-pause");
|
||||
} else {
|
||||
playPauseButton->setIcon("media-playback-start");
|
||||
if (playPauseButton) {
|
||||
if (newState == Phonon::PlayingState) {
|
||||
playPauseButton->setIcon("media-playback-pause");
|
||||
} else {
|
||||
playPauseButton->setIcon("media-playback-start");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user