compile. we don't need a const here

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37592 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Peter Kümmel 2011-02-10 23:43:09 +00:00
parent b9b6c12782
commit c87247ed39
2 changed files with 4 additions and 4 deletions

View File

@ -14,8 +14,8 @@
///
char const * lyx_version = PACKAGE_VERSION;
///
const int lyx_version_major = LYX_MAJOR_VERSION;
const int lyx_version_minor = LYX_MINOR_VERSION;
int lyx_version_major = LYX_MAJOR_VERSION;
int lyx_version_minor = LYX_MINOR_VERSION;
///
char const * lyx_release_date = LYX_DATE;

View File

@ -17,8 +17,8 @@
///About dialog, inset info, export headers
extern char const * lyx_version;
//.lyx header. We don't want lyx_version because of VCS conflicts.
extern const int lyx_version_major;
extern const int lyx_version_minor;
extern int lyx_version_major;
extern int lyx_version_minor;
///
extern char const * lyx_release_date;