mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
rename type_info to avoid strange name clashes on Apple's gcc
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@6136 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
0a64d3427b
commit
f4e4fa7eb8
@ -123,7 +123,7 @@ int RefInset::docbook(std::ostream & os, bool) const
|
||||
}
|
||||
|
||||
|
||||
RefInset::type_info RefInset::types[] = {
|
||||
RefInset::ref_type_info RefInset::types[] = {
|
||||
{ "ref", N_("Standard"), N_("Ref: ")},
|
||||
{ "pageref", N_("Page Number"), N_("Page: ")},
|
||||
{ "vpageref", N_("Textual Page Number"), N_("TextPage: ")},
|
||||
|
@ -35,7 +35,7 @@ public:
|
||||
int docbook(std::ostream & os, bool) const;
|
||||
|
||||
|
||||
struct type_info {
|
||||
struct ref_type_info {
|
||||
///
|
||||
string latex_name;
|
||||
///
|
||||
@ -43,7 +43,7 @@ public:
|
||||
///
|
||||
string short_gui_name;
|
||||
};
|
||||
static type_info types[];
|
||||
static ref_type_info types[];
|
||||
///
|
||||
static int getType(string const & name);
|
||||
///
|
||||
|
Loading…
Reference in New Issue
Block a user