]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetspecialchar.C
reformatting and remove using delc
[lyx.git] / src / insets / insetspecialchar.C
index 48fa451654926ef6f221768d8f3b27fb15a746d5..9f404779675684c96f7ab0c4604f0ef4ef56b5e5 100644 (file)
@@ -196,7 +196,7 @@ int InsetSpecialChar::Latex(Buffer const *, ostream & os, bool /*fragile*/,
        return 0;
 }
 
-int InsetSpecialChar::Ascii(Buffer const *, ostream & os) const
+int InsetSpecialChar::Ascii(Buffer const *, ostream & os, int) const
 {
        switch (kind) {
        case HYPHENATION:                       break;
@@ -211,17 +211,17 @@ int InsetSpecialChar::Ascii(Buffer const *, ostream & os) const
 
 int InsetSpecialChar::Linuxdoc(Buffer const * buf, ostream & os) const
 {
-       return Ascii(buf, os);
+       return Ascii(buf, os, 0);
 }
 
 
 int InsetSpecialChar::DocBook(Buffer const * buf, ostream & os) const
 {
-       return Ascii(buf, os);
+       return Ascii(buf, os, 0);
 }
 
 
-Inset * InsetSpecialChar::Clone() const
+Inset * InsetSpecialChar::Clone(Buffer const &) const
 {
        return new InsetSpecialChar(kind);
 }