mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-06 21:58:57 -04:00
fixed missing case entries in ForumModel
This commit is contained in:
parent
59220b5c85
commit
3edd1dd0dd
1 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue