diff --git a/src/ui/view.hpp b/src/ui/view.hpp index 8a5be5a0c811d58e9c54823b27e6add90fa4c4d4..0b417cb49efce0ddd51d74989ca1081a5a14312c 100644 --- a/src/ui/view.hpp +++ b/src/ui/view.hpp @@ -28,7 +28,7 @@ public: * * @param progress The progress_indicator from the new running task to add */ - virtual void add_progress_indicator(const std::shared_ptr<progress_indicator> &progress); +// virtual void add_progress_indicator(const std::shared_ptr<progress_indicator> &progress); /** * This method will be called on a regular basis when the view needs to be updated @@ -40,14 +40,14 @@ public: * @param event The event that caused the update. * @return True if rerendering is required or otherwise false. */ - virtual bool update(const std::shared_ptr<display> &display, const std::shared_ptr<event> &event); +// virtual bool update(const std::shared_ptr<display> &display, const std::shared_ptr<event> &event); /** * This method gets called when events need to be processed that do not * necessarily come from the UI thread. * * @param event The event that caused the update. */ - virtual void schedule_update(const std::shared_ptr<event> &event); +// virtual void schedule_update(const std::shared_ptr<event> &event); /** * Use this method in order to retrieve the parent of this view. * @warn Keep in mind that this might be null.