X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FDispatchResult.h;h=c41b4c5b67e0e97d14ad34496b866d955a3f3842;hb=125ed160d625368520074f2898c0487d30d46b98;hp=21dfa4f92bd018dcb44d45e3f9be3b71da36a50f;hpb=0a5b33bcad81748c8bfa70bdc3e006e0b1749eff;p=lyx.git diff --git a/src/DispatchResult.h b/src/DispatchResult.h index 21dfa4f92b..c41b4c5b67 100644 --- a/src/DispatchResult.h +++ b/src/DispatchResult.h @@ -24,21 +24,10 @@ class DispatchResult { public: /// - DispatchResult() : - dispatched_(false), - error_(false), - update_(Update::None), - need_buf_update_(false), - need_msg_update_(true) - {} + DispatchResult() = default; /// DispatchResult(bool dispatched, Update::flags f) : - dispatched_(dispatched), - error_(false), - update_(f), - need_buf_update_(false), - need_msg_update_(true) - {} + dispatched_(dispatched), update_(f) {} /// bool dispatched() const { return dispatched_; } /// @@ -48,7 +37,7 @@ public: /// void setError(bool e) { error_ = e; } /// - docstring message() { return message_; } + docstring message() const { return message_; } /// void setMessage(docstring const & m) { message_ = m; } /// @@ -72,17 +61,17 @@ public: private: /// was the event fully dispatched? - bool dispatched_; + bool dispatched_ = false; /// was there an error? - bool error_; + bool error_ = false; /// do we need to redraw the screen afterwards? - Update::flags update_; + Update::flags update_ = Update::None; /// docstring message_; - /// - bool need_buf_update_; /// - bool need_msg_update_; + bool need_buf_update_ = false; + /// + bool need_msg_update_ = true; };