]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/MathMacroArgument.cpp
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / MathMacroArgument.cpp
index 4d2badb9e072e830af90fd7082e18f1f9d33af2a..eb3d86a86d2412d293302f055d95a6e7482ae0b0 100644 (file)
@@ -32,7 +32,7 @@ MathMacroArgument::MathMacroArgument(size_t n)
                lyxerr << "MathMacroArgument::MathMacroArgument: wrong Argument id: "
                        << n << endl;
        }
-       // The profiler tells us not to use 
+       // The profiler tells us not to use
        // str_ = '#' + convert<docstring>(n);
        // so we do the conversion of n to ASCII manually.
        // This works because 1 <= n <= 9.
@@ -42,9 +42,9 @@ MathMacroArgument::MathMacroArgument(size_t n)
 }
 
 
-auto_ptr<InsetBase> MathMacroArgument::doClone() const
+auto_ptr<Inset> MathMacroArgument::doClone() const
 {
-       return auto_ptr<InsetBase>(new MathMacroArgument(*this));
+       return auto_ptr<Inset>(new MathMacroArgument(*this));
 }