X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDispatchResult.h;h=d8689898d8d5f56ab00a27850a4f564a22b6944a;hb=4ddc9e2501400f8bdc35d4d1fe56f39c49e82115;hp=4b9cbfe75757320d45ec854aea669bfa89c4e500;hpb=51aebc9327345f6ea065035f489dbfec1568279f;p=lyx.git diff --git a/src/DispatchResult.h b/src/DispatchResult.h index 4b9cbfe757..d8689898d8 100644 --- a/src/DispatchResult.h +++ b/src/DispatchResult.h @@ -29,8 +29,7 @@ public: error_(false), update_(Update::None), need_buf_update_(false), - need_msg_update_(true), - need_changes_update_(false) + need_msg_update_(true) {} /// DispatchResult(bool dispatched, Update::flags f) : @@ -38,8 +37,7 @@ public: error_(false), update_(f), need_buf_update_(false), - need_msg_update_(true), - need_changes_update_(false) + need_msg_update_(true) {} /// bool dispatched() const { return dispatched_; } @@ -59,14 +57,12 @@ public: Update::flags screenUpdate() const { return update_; } /// void screenUpdate(Update::flags f) { update_ = f; } - /// Does the buffer need updating? bool needBufferUpdate() const { return need_buf_update_; } /// Force the buffer to be updated 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 message to be displayed @@ -74,14 +70,6 @@ public: /// Clear the flag indicating we need to display the message void clearMessageUpdate() { need_msg_update_ = false; } - /// Do we need to update the change tracking presence flag? - bool needChangesUpdate() { return need_changes_update_; } - /// Force the change tracking presence flag to be updated - void forceChangesUpdate() { need_changes_update_ = true; } - /// Clear the flag indicating that we need to update the change tracking - /// presence flag - void clearChangesUpdate() { need_changes_update_ = false; } - private: /// was the event fully dispatched? bool dispatched_; @@ -95,8 +83,6 @@ private: bool need_buf_update_; /// bool need_msg_update_; - /// - bool need_changes_update_; };