1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 13:17:44 +00:00

Browser: Make storage inspector columns sortable

This commit is contained in:
Jelle Raaijmakers 2022-03-30 00:04:47 +02:00 committed by Linus Groh
parent 62fbf282b1
commit 02e2f11380
2 changed files with 6 additions and 1 deletions

View file

@ -8,6 +8,7 @@
#include "CookiesModel.h"
#include "Tab.h"
#include <LibGUI/SortingProxyModel.h>
#include <LibGUI/Widget.h>
#include <LibWeb/Cookie/Cookie.h>
@ -26,6 +27,7 @@ private:
RefPtr<GUI::TableView> m_cookies_table_view;
RefPtr<CookiesModel> m_cookies_model;
RefPtr<GUI::SortingProxyModel> m_sorting_model;
};
}