diff options
Diffstat (limited to 'include/Window.hpp')
-rw-r--r-- | include/Window.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/Window.hpp b/include/Window.hpp index b33605b..bff2e48 100644 --- a/include/Window.hpp +++ b/include/Window.hpp @@ -21,6 +21,8 @@ namespace dchat Window(); virtual ~Window(); + void refresh(); + std::shared_ptr<Rooms> rooms; WindowNotification *windowNotification; private: @@ -62,5 +64,6 @@ namespace dchat Glib::Dispatcher dispatcher; std::recursive_mutex dispatcherMutex; std::vector<DispatcherHandler> dispatcherHandlers; + bool needUpdate; }; } |