1
mirror of https://invent.kde.org/network/falkon.git synced 2024-11-11 09:32:12 +01:00

Fix compile error with vc++ 2013

Qz::VERSION is not exported
This commit is contained in:
Charles 2014-04-23 15:12:32 +07:00
parent 59ad2db607
commit 3175840126
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ const int sessionVersionQt5 = 0x0003 | 0x050000;
const int bookmarksVersion = 1; const int bookmarksVersion = 1;
const char* APPNAME = "QupZilla"; const char* APPNAME = "QupZilla";
const char* VERSION = QUPZILLA_VERSION; QUPZILLA_EXPORT const char* VERSION = QUPZILLA_VERSION;
const char* BUILDTIME = __DATE__" "__TIME__; const char* BUILDTIME = __DATE__" "__TIME__;
const char* AUTHOR = "David Rosca"; const char* AUTHOR = "David Rosca";
const char* COPYRIGHT = "2010-2014"; const char* COPYRIGHT = "2010-2014";

View File

@ -63,7 +63,7 @@ extern const int sessionVersionQt5;
extern const int bookmarksVersion; extern const int bookmarksVersion;
extern const char* APPNAME; extern const char* APPNAME;
extern const char* VERSION; QUPZILLA_EXPORT extern const char* VERSION;
extern const char* BUILDTIME; extern const char* BUILDTIME;
extern const char* AUTHOR; extern const char* AUTHOR;
extern const char* COPYRIGHT; extern const char* COPYRIGHT;