summaryrefslogtreecommitdiff
path: root/Userland/Applications/KeyboardSettings/CharacterMapFileListModel.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Applications/KeyboardSettings/CharacterMapFileListModel.h')
-rw-r--r--Userland/Applications/KeyboardSettings/CharacterMapFileListModel.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/KeyboardSettings/CharacterMapFileListModel.h b/Userland/Applications/KeyboardSettings/CharacterMapFileListModel.h
index 4fcd1d8123..5c5c6cb8b1 100644
--- a/Userland/Applications/KeyboardSettings/CharacterMapFileListModel.h
+++ b/Userland/Applications/KeyboardSettings/CharacterMapFileListModel.h
@@ -50,8 +50,8 @@ public:
virtual GUI::Variant data(const GUI::ModelIndex& index, GUI::ModelRole role) const override
{
- ASSERT(index.is_valid());
- ASSERT(index.column() == 0);
+ VERIFY(index.is_valid());
+ VERIFY(index.column() == 0);
if (role == GUI::ModelRole::Display)
return m_file_names.at(index.row());