From 50f29e6183cdc74b04d24f6ed9a0e9816c8594aa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lubo=C5=A1=20Lu=C5=88=C3=A1k?= Date: Wed, 6 Aug 2008 11:27:43 +0000 Subject: [PATCH] Detect save path change, patch by Damien Gombault. BUG: 164942 svn path=/branches/KDE/4.1/kdebase/workspace/; revision=843070 --- effects/videorecord_config.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/effects/videorecord_config.cpp b/effects/videorecord_config.cpp index 615fd2c9a0..882d69c180 100644 --- a/effects/videorecord_config.cpp +++ b/effects/videorecord_config.cpp @@ -68,9 +68,11 @@ VideoRecordEffectConfig::VideoRecordEffectConfig(QWidget* parent, const QVariant mShortcutEditor = new KShortcutsEditor(actionCollection, this, KShortcutsEditor::GlobalAction, KShortcutsEditor::LetterShortcutsDisallowed); - connect(mShortcutEditor, SIGNAL(keyChange()), this, SLOT(changed())); layout->addWidget(mShortcutEditor); + connect(saveVideo, SIGNAL(textChanged(const QString&)), this, SLOT(changed())); + connect(mShortcutEditor, SIGNAL(keyChange()), this, SLOT(changed())); + layout->addStretch(); load();