Skip to content
Snippets Groups Projects
Commit f1e58512 authored by kh1's avatar kh1
Browse files

Fix newline.

parent 0628ca19
Branches
Tags
No related merge requests found
...@@ -53,7 +53,6 @@ QVariant OpenPagesModel::data(const QModelIndex &index, int role) const ...@@ -53,7 +53,6 @@ QVariant OpenPagesModel::data(const QModelIndex &index, int role) const
{ {
if (!index.isValid() || role != Qt::DisplayRole if (!index.isValid() || role != Qt::DisplayRole
|| index.row() >= rowCount() || index.column() >= columnCount() - 1) || index.row() >= rowCount() || index.column() >= columnCount() - 1)
return QVariant(); return QVariant();
QString title = m_pages.at(index.row())->title(); QString title = m_pages.at(index.row())->title();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment