From 6212c1b319a59450c44c9bb212cf7dce5df23c3e Mon Sep 17 00:00:00 2001 From: ormorph Date: Mon, 27 Nov 2023 18:20:07 +0300 Subject: [PATCH] Solving the problem of launching the settings dialog without xine support The settings dialog crashes if built without xine support. Signed-off-by: ormorph --- src/pref.cpp | 9 ++++++--- 1 file 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);