]> git.sesse.net Git - kdenlive/commitdiff
Fix possible confusion in variable name
authorJean-Baptiste Mardelle <jb@kdenlive.org>
Fri, 26 Feb 2010 21:43:15 +0000 (21:43 +0000)
committerJean-Baptiste Mardelle <jb@kdenlive.org>
Fri, 26 Feb 2010 21:43:15 +0000 (21:43 +0000)
svn path=/trunk/kdenlive/; revision=4342

src/wizard.cpp

index b45fc3e27037e6333fb22704144d478e67330753..8ccde3a702b9825e0ce7c85c20056386b0abeae1 100644 (file)
@@ -36,7 +36,7 @@
 #include <QTimer>
 
 const double recommendedMltVersion = 50;
-static const char version[] = VERSION;
+static const char kdenlive_version[] = VERSION;
 
 Wizard::Wizard(bool upgrade, QWidget *parent) :
         QWizard(parent)
@@ -48,7 +48,7 @@ Wizard::Wizard(bool upgrade, QWidget *parent) :
     page1->setTitle(i18n("Welcome"));
     QLabel *label;
     if (upgrade)
-        label = new QLabel(i18n("Your Kdenlive version was upgraded to version %1. Please take some time to review the basic settings", QString(version).section(' ', 0, 0)));
+        label = new QLabel(i18n("Your Kdenlive version was upgraded to version %1. Please take some time to review the basic settings", QString(kdenlive_version).section(' ', 0, 0)));
     else
         label = new QLabel(i18n("This is the first time you run Kdenlive. This wizard will let you adjust some basic settings, you will be ready to edit your first movie in a few seconds..."));
     label->setWordWrap(true);
@@ -581,7 +581,7 @@ bool Wizard::isOk() const
 
 void Wizard::slotShowWebInfos()
 {
-    KRun::runUrl(KUrl("http://kdenlive.org/discover/" + QString(version).section(' ', 0, 0)), "text/html", this);
+    KRun::runUrl(KUrl("http://kdenlive.org/discover/" + QString(kdenlive_version).section(' ', 0, 0)), "text/html", this);
 }
 
 #include "wizard.moc"