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:
André Pönitz 2003-02-13 08:12:51 +00:00
parent 0a64d3427b
commit f4e4fa7eb8
2 changed files with 3 additions and 3 deletions

View File

@ -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: ")},

View File

@ -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);
///