]> git.lyx.org Git - lyx.git/blobdiff - src/lyxfunc.h
More ascii-export fixes and when making copy of single tabular cells now the
[lyx.git] / src / lyxfunc.h
index 6942650e1906291412a33bab54609e0619353d68..c76751e56651b8b858c1db919a821fbde6f52fa2 100644 (file)
@@ -55,17 +55,6 @@ public:
        /// The last key was meta
        bool wasMetaKey() const;
 
-       // These can't be global because are part of the
-       // internal state (ale970227)
-       /// Get the current keyseq string
-       string const keyseqStr() const;
-
-       /// Is the key sequence uncomplete?
-       bool keyseqUncomplete() const;
-
-       /// get options for the current keyseq
-       string const keyseqOptions() const;
-
         /// True if lyxfunc reports an error
         bool errorStat() const { return errorstat; }
         /// Buffer to store result messages
@@ -141,33 +130,6 @@ bool LyXFunc::wasMetaKey() const
 }
      
 
-inline
-string const LyXFunc::keyseqStr() const
-{
-       // Why not just remove this function
-       string text;
-       keyseq.print(text, true);
-       return text;
-} 
-
-
-inline
-string const LyXFunc::keyseqOptions() const
-{
-       // Why not just remove this function
-       string text;
-       keyseq.printOptions(text);
-       return text;
-} 
-
-
-inline
-bool LyXFunc::keyseqUncomplete() const
-{ 
-       return (keyseq.length > 0);
-}
-
-
 inline
 void LyXFunc::setHintMessage(bool hm) 
 {