]> git.lyx.org Git - lyx.git/blobdiff - src/insets/InsetIndex.cpp
Fix Bug 3947: BibTeX allows parentheses in the key (even if the whole entry is delimi...
[lyx.git] / src / insets / InsetIndex.cpp
index b43e1831160a643801f22042c2cc4be41ee83b29..35508a8e9f4d2cc73e822e747958e2fe9d134724 100644 (file)
@@ -47,15 +47,15 @@ int InsetIndex::docbook(Buffer const &, odocstream & os,
                        OutputParams const &) const
 {
        os << "<indexterm><primary>"
-           << sgml::escapeString(getParam("name"))
+          << sgml::escapeString(getParam("name"))
           << "</primary></indexterm>";
        return 0;
 }
 
 
-InsetBase::Code InsetIndex::lyxCode() const
+Inset::Code InsetIndex::lyxCode() const
 {
-       return InsetBase::INDEX_CODE;
+       return Inset::INDEX_CODE;
 }
 
 
@@ -82,9 +82,9 @@ void InsetPrintIndex::validate(LaTeXFeatures & features) const
 }
 
 
-InsetBase::Code InsetPrintIndex::lyxCode() const
+Inset::Code InsetPrintIndex::lyxCode() const
 {
-       return InsetBase::INDEX_PRINT_CODE;
+       return Inset::INDEX_PRINT_CODE;
 }