]> git.sesse.net Git - kdenlive/commitdiff
Typo: no space before question mark in English
authorSimon A. Eugster <simon.eu@gmail.com>
Sun, 25 Jan 2009 18:41:21 +0000 (18:41 +0000)
committerSimon A. Eugster <simon.eu@gmail.com>
Sun, 25 Jan 2009 18:41:21 +0000 (18:41 +0000)
svn path=/branches/KDE4/; revision=2958

src/effectstackview.cpp

index 939a58f93dcf73dd9cf25b246bcd23ab9713487e..1b7689140bf070495bbfcf25cba922c57566eded 100644 (file)
@@ -86,7 +86,7 @@ void EffectStackView::slotSaveEffect() {
     if (name.isEmpty()) return;
     QString path = KStandardDirs::locateLocal("appdata", "effects/", true);
     path = path + name + ".xml";
-    if (QFile::exists(path)) if (KMessageBox::questionYesNo(this, i18n("File already exists.\nDo you want to overwrite it ?")) == KMessageBox::No) return;
+    if (QFile::exists(path)) if (KMessageBox::questionYesNo(this, i18n("File already exists.\nDo you want to overwrite it?")) == KMessageBox::No) return;
 
     int i = ui.effectlist->currentRow();
     QDomDocument doc;