]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_fracbase.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_fracbase.h
index 8fff7cfaf38e50156048d2bf1d3e49219a0138d6..5339db82711a8b6c187f039bcf731845fadfe961 100644 (file)
@@ -1,25 +1,30 @@
 // -*- C++ -*-
+/**
+ * \file math_fracbase.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef MATH_FRACBASE_H
 #define MATH_FRACBASE_H
 
 #include "math_nestinset.h"
 
-#ifdef __GNUG__
-#pragma interface
-#endif
 
 class MathFracbaseInset : public MathNestInset {
 public:
        ///
        MathFracbaseInset();
        ///
-       bool idxUp(idx_type &) const;
-       ///
-       bool idxDown(idx_type &) const;
+       bool idxUpDown(LCursor &, bool up) const;
        ///
-       bool idxLeft(idx_type &, pos_type &) const;
+       bool idxLeft(LCursor &) const;
        ///
-       bool idxRight(idx_type &, pos_type &) const;
+       bool idxRight(LCursor &) const;
 };
 
 #endif