]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfunc.h
Point fix, earlier forgotten
[lyx.git] / src / lyxfunc.h
index 5926a265f6800264948aa0e161773c01549e57c3..a64146516cfb1feef399a65d362f8d499318935a 100644 (file)
@@ -1,4 +1,17 @@
 // -*- C++ -*-
+/**
+ * \file lyxfunc.h
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
+ *
+ * \author Lars Gullik Bjønnes
+ * \author Jean-Marc Lasgouttes
+ * \author John Levon
+ * \author André Pönitz
+ *
+ * Full author contact details are available in file CREDITS.
+ */
+
 #ifndef LYXFUNC_H
 #define LYXFUNC_H
 
@@ -83,7 +96,7 @@ private:
        ///
        key_modifier::state meta_fake_bit;
        ///
-       void moveCursorUpdate(bool flag = true, bool selecting = false);
+       void moveCursorUpdate();
        ///
        void setupLocalKeymap();
        /// Error status, only Dispatch can change this flag
@@ -113,21 +126,6 @@ private:
 
        ///
        void closeBuffer();
-       ///
-       //  This return or directly text (default) of getLyXText()
-       ///
-       LyXText * TEXT(bool) const;
-       ///
 };
 
-
-/*--------------------  inlines  --------------------------*/
-
-inline
-bool LyXFunc::wasMetaKey() const
-{
-       return (meta_fake_bit != key_modifier::none);
-}
-
-
 #endif