]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.C
clear()->erase() ; lots of using directives for cxx
[lyx.git] / src / insets / insetlabel.C
index d48f81b59d58982c57478e3deadccd5c3e6e6841..0973ad239cd1b419a570cc4609693deaf86241a3 100644 (file)
@@ -47,12 +47,18 @@ string InsetLabel::getLabel(int) const
 
 
 int InsetLabel::Latex(ostream & os,
-                     signed char /*fragile*/, bool /*fs*/) const
+                     bool /*fragile*/, bool /*fs*/) const
 {
        os << escape(getCommand());
        return 0;
 }
 
+int InsetLabel::Ascii(ostream & os) const
+{
+       os << "<" << getContents()  << ">";
+       return 0;
+}
+
 
 int InsetLabel::Linuxdoc(ostream & os) const
 {