]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/InsetMathCases.cpp
* src/frontends/controllers/Dialog.{cpp,h}:
[lyx.git] / src / mathed / InsetMathCases.cpp
index 64a1d48bd6c8fddc3b3d94b17f669e189626fab6..27ec6c3b95580d6925b0ae4fd4fe4b95c5b00e40 100644 (file)
 #include <config.h>
 
 #include "InsetMathCases.h"
-#include "MathArray.h"
+#include "MathData.h"
 #include "MathStream.h"
 #include "MathSupport.h"
 #include "FuncStatus.h"
 #include "LaTeXFeatures.h"
 #include "support/std_ostream.h"
-#include "cursor.h"
-#include "funcrequest.h"
+#include "Cursor.h"
+#include "FuncRequest.h"
 #include "gettext.h"
-#include "undo.h"
+#include "Undo.h"
 
 #include "support/lstrings.h"
 
@@ -41,9 +41,9 @@ InsetMathCases::InsetMathCases(row_type n)
 {}
 
 
-auto_ptr<InsetBase> InsetMathCases::doClone() const
+auto_ptr<Inset> InsetMathCases::doClone() const
 {
-       return auto_ptr<InsetBase>(new InsetMathCases(*this));
+       return auto_ptr<Inset>(new InsetMathCases(*this));
 }
 
 
@@ -68,7 +68,7 @@ void InsetMathCases::draw(PainterInfo & pi, int x, int y) const
 }
 
 
-void InsetMathCases::doDispatch(LCursor & cur, FuncRequest & cmd)
+void InsetMathCases::doDispatch(Cursor & cur, FuncRequest & cmd)
 {
        //lyxerr << "*** InsetMathCases: request: " << cmd << endl;
        switch (cmd.action) {
@@ -86,7 +86,7 @@ void InsetMathCases::doDispatch(LCursor & cur, FuncRequest & cmd)
 }
 
 
-bool InsetMathCases::getStatus(LCursor & cur, FuncRequest const & cmd,
+bool InsetMathCases::getStatus(Cursor & cur, FuncRequest const & cmd,
                FuncStatus & flag) const
 {
        switch (cmd.action) {