]> git.lyx.org Git - lyx.git/blobdiff - src/funcrequest.h
more action work
[lyx.git] / src / funcrequest.h
index ee4c7d1d3a41798ab403cdf011228894c2b3c4e7..8a1d5acc01259e69702cb186d5074735c9fc7ee0 100644 (file)
@@ -14,7 +14,7 @@
 
 #include "lfuns.h"
 #include "frontends/mouse_state.h"
-#include "LString.h"
+#include "support/std_string.h"
 
 class BufferView;
 
@@ -57,7 +57,7 @@ public:
        void errorMessage(string const & msg) const;
 
        /// argument parsing, extract argument i as string
-       string getArg(int i) const;
+       string getArg(unsigned int i) const;
 
 private:
        /// the BufferView we are talking to
@@ -75,4 +75,11 @@ public:  // should be private, too...
        mouse_button::state button_;
 };
 
+
+inline
+bool operator==(FuncRequest const & lhs, FuncRequest const & rhs)
+{
+       return lhs.action == rhs.action && lhs.argument == rhs.argument;
+}
+
 #endif // FUNCREQUEST_H