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

LibGUI: The UI calls it 'Icon view', fix the name in the code

This commit is contained in:
Ben Wiederhake 2020-05-01 02:09:04 +02:00 committed by Andreas Kling
parent 8e01356b2f
commit ef433cb367
9 changed files with 74 additions and 74 deletions

View file

@ -29,7 +29,7 @@
#include <AK/Vector.h>
#include <LibGUI/ColumnsView.h>
#include <LibGUI/FileSystemModel.h>
#include <LibGUI/ItemView.h>
#include <LibGUI/IconView.h>
#include <LibGUI/StackWidget.h>
#include <LibGUI/TableView.h>
#include <sys/stat.h>
@ -59,7 +59,7 @@ public:
enum ViewMode {
Invalid,
List,
Table,
Columns,
Icon
};
@ -69,12 +69,12 @@ public:
GUI::AbstractView& current_view()
{
switch (m_view_mode) {
case ViewMode::List:
case ViewMode::Table:
return *m_table_view;
case ViewMode::Columns:
return *m_columns_view;
case ViewMode::Icon:
return *m_item_view;
return *m_icon_view;
default:
ASSERT_NOT_REACHED();
}
@ -84,7 +84,7 @@ public:
void for_each_view_implementation(Callback callback)
{
callback(*m_table_view);
callback(*m_item_view);
callback(*m_icon_view);
callback(*m_columns_view);
}
@ -107,6 +107,6 @@ private:
void add_path_to_history(const StringView& path);
RefPtr<GUI::TableView> m_table_view;
RefPtr<GUI::ItemView> m_item_view;
RefPtr<GUI::IconView> m_icon_view;
RefPtr<GUI::ColumnsView> m_columns_view;
};