]> git.lyx.org Git - lyx.git/blobdiff - src/FuncRequest.h
Revert "Fix a number of signedness warnings"
[lyx.git] / src / FuncRequest.h
index 35fff681599dcbb5689a3dfc6655d902fe555a25..19f571a091c7503dcf7d90c37a4e81e370cf8103 100644 (file)
@@ -86,7 +86,7 @@ public:
        ///
        mouse_button::state button() const { return button_; }
        ///
-       KeyModifier modifier() { return modifier_; }
+       KeyModifier modifier() const { return modifier_; }
 
        /// argument parsing, extract argument i as std::string
        std::string getArg(unsigned int i) const;
@@ -122,7 +122,7 @@ private:
        ///
        KeyModifier modifier_;
        /// Commands should be run synchronously when they
-       /// are launched via "command-sequence" or "repeat"
+       /// are launched via "command-sequence" or "repeat" or "buffer-forall"
        bool allow_async_;
 };