]> git.lyx.org Git - lyx.git/blobdiff - src/DispatchResult.h
Fixup tooltips
[lyx.git] / src / DispatchResult.h
index 687e55c8fded3a02ec562a846b97e66d73269dc3..d8689898d8d5f56ab00a27850a4f564a22b6944a 100644 (file)
@@ -63,12 +63,12 @@ public:
        void forceBufferUpdate() { need_buf_update_ = true; }
        /// Clear the flag indicating we need an update
        void clearBufferUpdate() { need_buf_update_ = false; }
-       ///
+       /// Do we need to display a message in the status bar?
        bool needMessageUpdate() const { return need_msg_update_; }
-       /// Force the buffer to be updated
+       /// Force the message to be displayed
        void forceMessageUpdate() { need_msg_update_ = true; }
-       /// Clear the flag indicating we need an update
-       void suppressMessageUpdate() { need_msg_update_ = false; }
+       /// Clear the flag indicating we need to display the message
+       void clearMessageUpdate() { need_msg_update_ = false; }
 
 private:
        /// was the event fully dispatched?
@@ -79,7 +79,7 @@ private:
        Update::flags update_;
        ///
        docstring message_;
-       /// 
+       ///
        bool need_buf_update_;
        ///
        bool need_msg_update_;