mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-01-14 17:07:17 -05:00
fixed missing case entries in ForumModel
This commit is contained in:
parent
59220b5c85
commit
3edd1dd0dd
@ -256,10 +256,13 @@ QVariant RsGxsForumModel::headerData(int section, Qt::Orientation orientation, i
|
|||||||
|
|
||||||
switch(section)
|
switch(section)
|
||||||
{
|
{
|
||||||
default:
|
|
||||||
case COLUMN_THREAD_TITLE: return tr("Title");
|
case COLUMN_THREAD_TITLE: return tr("Title");
|
||||||
case COLUMN_THREAD_DATE: return tr("Date");
|
case COLUMN_THREAD_DATE: return tr("Date");
|
||||||
case COLUMN_THREAD_AUTHOR: return tr("Author");
|
case COLUMN_THREAD_AUTHOR: return tr("Author");
|
||||||
|
case COLUMN_THREAD_DISTRIBUTION: return QString("[icon missing]") ;
|
||||||
|
case COLUMN_THREAD_READ: return QString("[icon missing]") ;
|
||||||
|
default:
|
||||||
|
return QString("[unused]");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user