summaryrefslogtreecommitdiffstats
path: root/src/pref.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pref.cpp')
-rw-r--r--src/pref.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/pref.cpp b/src/pref.cpp
index f3301b4..bd9debd 100644
--- a/src/pref.cpp
+++ b/src/pref.cpp
@@ -435,9 +435,7 @@ KDE_NO_CDTOR_EXPORT PrefRecordPage::PrefRecordPage (TQWidget *parent, PartBase *
layout->addLayout (buttonlayout);
layout->addItem (new TQSpacerItem (5, 0, TQSizePolicy::Minimum, TQSizePolicy::Expanding));
connect (m_player, TQT_SIGNAL (sourceChanged(KMPlayer::Source*,KMPlayer::Source*)), this, TQT_SLOT (sourceChanged(KMPlayer::Source*,KMPlayer::Source*)));
-#ifdef HAVE_XINE
connect (recorder, TQT_SIGNAL (clicked(int)), this, TQT_SLOT(recorderClicked(int)));
-#endif
connect (replay, TQT_SIGNAL (clicked (int)), this, TQT_SLOT (replayClicked (int)));
}
@@ -475,7 +473,12 @@ KDE_NO_EXPORT void PrefRecordPage::sourceChanged (Source * olds, Source * nws) {
}
KDE_NO_EXPORT void PrefRecordPage::recorderClicked (int id) {
- bool b = recorder->find(id)->text().find (TQString::fromLatin1("Xine")) > -1;
+ bool b = false;
+ TQButton *recBtn = recorder->find(id);
+ if (recBtn)
+ {
+ b = recBtn->text().find (TQString::fromLatin1("Xine")) > -1;
+ }
replay->setEnabled (!b);
if (b)
replay->setButton (Settings::ReplayNo);