summaryrefslogtreecommitdiff
path: root/Applications/ChanViewer/ThreadCatalogModel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Applications/ChanViewer/ThreadCatalogModel.cpp')
-rw-r--r--Applications/ChanViewer/ThreadCatalogModel.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/Applications/ChanViewer/ThreadCatalogModel.cpp b/Applications/ChanViewer/ThreadCatalogModel.cpp
index 3ba7ed527c..d0519c4ff2 100644
--- a/Applications/ChanViewer/ThreadCatalogModel.cpp
+++ b/Applications/ChanViewer/ThreadCatalogModel.cpp
@@ -129,17 +129,17 @@ GUI::Model::ColumnMetadata ThreadCatalogModel::column_metadata(int column) const
{
switch (column) {
case Column::ThreadNumber:
- return { 70, TextAlignment::CenterRight };
+ return { 70, Gfx::TextAlignment::CenterRight };
case Column::Subject:
- return { 170, TextAlignment::CenterLeft };
+ return { 170, Gfx::TextAlignment::CenterLeft };
case Column::Text:
- return { 270, TextAlignment::CenterLeft };
+ return { 270, Gfx::TextAlignment::CenterLeft };
case Column::ReplyCount:
- return { 45, TextAlignment::CenterRight };
+ return { 45, Gfx::TextAlignment::CenterRight };
case Column::ImageCount:
- return { 40, TextAlignment::CenterRight };
+ return { 40, Gfx::TextAlignment::CenterRight };
case Column::PostTime:
- return { 120, TextAlignment::CenterLeft };
+ return { 120, Gfx::TextAlignment::CenterLeft };
default:
ASSERT_NOT_REACHED();
}