mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-23 10:18:50 +00:00
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:
parent
b9b6c12782
commit
c87247ed39
@ -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;
|
||||
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user