]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathDelim.cpp
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / InsetMathDelim.cpp
index f7c1f24aa5e6a7adff8c30a40e6208caaa5c19da..af612d5e9fbbf8b3e658a7acb1b9b7d726fcd3cf 100644 (file)
@@ -31,7 +31,7 @@ static docstring convertDelimToLatexName(docstring const & name)
 {
        if (name.size() == 1) {
                char_type const c = name[0];
-               if (c == '<' || c == '(' || c == '[' || c == '.' 
+               if (c == '<' || c == '(' || c == '[' || c == '.'
                    || c == '>' || c == ')' || c == ']' || c == '/' || c == '|')
                        return name;
        }
@@ -52,9 +52,9 @@ InsetMathDelim::InsetMathDelim
 }
 
 
-auto_ptr<InsetBase> InsetMathDelim::doClone() const
+auto_ptr<Inset> InsetMathDelim::doClone() const
 {
-       return auto_ptr<InsetBase>(new InsetMathDelim(*this));
+       return auto_ptr<Inset>(new InsetMathDelim(*this));
 }