Do not use KDE_VERSION_STRING for workspace applications

Workspace is no longer synced with kdelibs releases. Thus if compiled
against e.g. 4.12 we want our workspace apps to still be 4.11.

REVIEW: 115519
This commit is contained in:
Martin Gräßlin 2014-02-06 16:43:39 +01:00
parent 2ccf1bc3f0
commit 625f996d58

View file

@ -30,7 +30,7 @@
#include <KApplication> #include <KApplication>
#include <KIcon> #include <KIcon>
#include <KAboutData> #include <KAboutData>
#include <kdeversion.h> #include <config-workspace.h>
#include <cassert> #include <cassert>
@ -40,7 +40,7 @@ int main(int argc, char *argv[])
"oxygen-shadow-demo", "oxygen-shadow-demo",
"kstyle_config", "kstyle_config",
ki18n( "Oxygen Shadow Demo" ), ki18n( "Oxygen Shadow Demo" ),
KDE_VERSION_STRING, WORKSPACE_VERSION_STRING,
ki18n( "Oxygen decoration shadows demonstration" ), ki18n( "Oxygen decoration shadows demonstration" ),
KAboutData::License_GPL_V2, KAboutData::License_GPL_V2,
ki18n( "(c) 2011, Hugo Pereira Da Costa" )); ki18n( "(c) 2011, Hugo Pereira Da Costa" ));