Fix comp on Linux.
This commit is contained in:
parent
bd3673615d
commit
d89787741c
@ -30,6 +30,7 @@
|
|||||||
#include <QSqlQuery>
|
#include <QSqlQuery>
|
||||||
#include <QSqlError>
|
#include <QSqlError>
|
||||||
#include <QStack>
|
#include <QStack>
|
||||||
|
#include <QCoreApplication>
|
||||||
|
|
||||||
|
|
||||||
StandardServiceRoot::StandardServiceRoot(FeedsModel *feeds_model, RootItem *parent)
|
StandardServiceRoot::StandardServiceRoot(FeedsModel *feeds_model, RootItem *parent)
|
||||||
@ -89,9 +90,7 @@ QVariant StandardServiceRoot::data(int column, int role) const {
|
|||||||
|
|
||||||
case Qt::ToolTipRole:
|
case Qt::ToolTipRole:
|
||||||
if (column == FDS_MODEL_TITLE_INDEX) {
|
if (column == FDS_MODEL_TITLE_INDEX) {
|
||||||
return
|
return tr("This is service account for standard RSS/RDF/ATOM feeds.");
|
||||||
m_title + "\n" +
|
|
||||||
tr("This is service account for standard RSS/RDF/ATOM feeds.");
|
|
||||||
}
|
}
|
||||||
else if (column == FDS_MODEL_COUNTS_INDEX) {
|
else if (column == FDS_MODEL_COUNTS_INDEX) {
|
||||||
//: Tooltip for "unread" column of feed list.
|
//: Tooltip for "unread" column of feed list.
|
||||||
|
@ -82,9 +82,7 @@ QVariant TtRssServiceRoot::data(int column, int role) const {
|
|||||||
case Qt::ToolTipRole:
|
case Qt::ToolTipRole:
|
||||||
// TODO: zobrazovat pokročile informace a statistiky.
|
// TODO: zobrazovat pokročile informace a statistiky.
|
||||||
if (column == FDS_MODEL_TITLE_INDEX) {
|
if (column == FDS_MODEL_TITLE_INDEX) {
|
||||||
return
|
return tr("This is service account TT-RSS (TinyTiny RSS) server.");
|
||||||
m_title + "\n" +
|
|
||||||
tr("This is service account TT-RSS (TinyTiny RSS) server.");
|
|
||||||
}
|
}
|
||||||
else if (column == FDS_MODEL_COUNTS_INDEX) {
|
else if (column == FDS_MODEL_COUNTS_INDEX) {
|
||||||
//: Tooltip for "unread" column of feed list.
|
//: Tooltip for "unread" column of feed list.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user