mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:37:35 +00:00
HackStudio: Clear ToDo entries upon opening new project
The ToDoEntries and ToDoEntriesWidget classes now have methods for clearing the entries, before entries would stay permanently, even after switching to a new project.
This commit is contained in:
parent
d48bd49002
commit
6076deae1d
5 changed files with 16 additions and 0 deletions
|
@ -91,6 +91,12 @@ void ToDoEntriesWidget::refresh()
|
|||
m_result_view->set_model(results_model);
|
||||
}
|
||||
|
||||
void ToDoEntriesWidget::clear()
|
||||
{
|
||||
ToDoEntries::the().clear_entries();
|
||||
refresh();
|
||||
}
|
||||
|
||||
ToDoEntriesWidget::ToDoEntriesWidget()
|
||||
{
|
||||
set_layout<GUI::VerticalBoxLayout>();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue