Skip to content
Snippets Groups Projects
Verified Commit 74f7c7a5 authored by Benny Baumann's avatar Benny Baumann
Browse files

dbg: Temporarily remove unimplemented methods

parent 646f4952
No related branches found
No related tags found
No related merge requests found
Pipeline #
......@@ -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.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment