X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDispatchResult.h;h=d8689898d8d5f56ab00a27850a4f564a22b6944a;hb=801d7dc9f42baf331642606a6641606779985439;hp=687e55c8fded3a02ec562a846b97e66d73269dc3;hpb=5520817bd37ee2e17ea2cc64dec2a50cc0386144;p=lyx.git diff --git a/src/DispatchResult.h b/src/DispatchResult.h index 687e55c8fd..d8689898d8 100644 --- a/src/DispatchResult.h +++ b/src/DispatchResult.h @@ -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_;