From 74f7c7a5dbf149b61ab03cbf4da9b1b6de22d55d Mon Sep 17 00:00:00 2001 From: Benny Baumann <BenBE@geshi.org> Date: Sun, 31 Mar 2019 19:51:29 +0200 Subject: [PATCH] dbg: Temporarily remove unimplemented methods --- src/ui/view.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/view.hpp b/src/ui/view.hpp index 8a5be5a..0b417cb 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. -- GitLab