If the font name is not available, show '-' to the user (instead of nothing).

TODO for the string unfreeze: add a better string.

svn path=/trunk/KDE/kdegraphics/okular/; revision=752578
This commit is contained in:
Pino Toscano 2007-12-24 23:31:52 +00:00
parent 9e45d58aaf
commit 8f40bfdb21

View File

@ -272,13 +272,17 @@ QVariant FontsListModel::data( const QModelIndex &index, int role ) const
switch ( index.column() )
{
case 0: return m_fonts.at( index.row() ).name(); break;
case 0:
{
QString fontname = m_fonts.at( index.row() ).name();
return fontname.isEmpty() ? QString::fromLatin1( "-" ) : fontname; // TODO i18n
break;
}
case 1: return descriptionForFontType( m_fonts.at( index.row() ).type() ); break;
case 2: return descriptionForEmbedType( m_fonts.at( index.row() ).embedType() ); break;
case 3: return m_fonts.at( index.row() ).file(); break;
default:
return QVariant();
}
return QVariant();
}
QVariant FontsListModel::headerData( int section, Qt::Orientation orientation, int role ) const