]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_xarrowinset.h
Fix to bug 2362: Deleting superscript also deletes subscript.
[lyx.git] / src / mathed / math_xarrowinset.h
index 3207da1bad330660b498b6a29dc7679459533a4e..dd0a5b1e24a49b55ff5882e97124f0325f5c0826 100644 (file)
@@ -1,23 +1,25 @@
 // -*- C++ -*-
+/**
+ * \file math_xarrowinset.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_XARROWINSET_H
 #define MATH_XARROWINSET_H
 
 #include "math_fracbase.h"
-#include "LString.h"
 
 
-/** Wide arrows like \xrightarrow
- *  \author André Pönitz
- *
- * Full author contact details are available in file CREDITS
- */
-
+/// Wide arrows like \xrightarrow
 class MathXArrowInset : public MathFracbaseInset {
 public:
        ///
-       explicit MathXArrowInset(string const & name);
-       ///
-       virtual std::auto_ptr<InsetBase> clone() const;
+       explicit MathXArrowInset(std::string const & name);
        ///
        void draw(PainterInfo & pi, int x, int y) const;
        ///
@@ -28,9 +30,10 @@ public:
        void normalize(NormalStream & os) const;
 
 private:
+       virtual std::auto_ptr<InsetBase> doClone() const;
        ///
        bool upper() const;
        ///
-       string const name_;
+       std::string const name_;
 };
 #endif