]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetlabel.C
pos=string::npos for regex not found, use handcoded transform in lstring.C, fix the...
[lyx.git] / src / insets / insetlabel.C
index 665485d3eef20a4e2ca9b5f93a471227bfc01ad0..b669e72b24318cb303be0bed3cb22627675a5a51 100644 (file)
@@ -25,15 +25,9 @@ InsetLabel::InsetLabel(string const & cmd)
 }
 
 
-InsetLabel::~InsetLabel()
+Inset * InsetLabel::Clone() const
 {
-}
-
-
-Inset * InsetLabel::Clone()
-{
-       InsetLabel * result = new InsetLabel(getCommand());
-       return result;
+       return new InsetLabel(getCommand());
 }
 
 
@@ -48,9 +42,10 @@ string InsetLabel::getLabel(int) const
        return contents;
 }
 
-int InsetLabel::Latex(FILE * file, signed char /*fragile*/)
+
+int InsetLabel::Latex(ostream & os, signed char /*fragile*/)
 {
-       fprintf(file, "%s", escape(getCommand()).c_str());
+       os << escape(getCommand());
        return 0;
 }