diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/dolphinmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphinmodel.cpp b/src/dolphinmodel.cpp index 525c8a4fd..a75c0e6f6 100644 --- a/src/dolphinmodel.cpp +++ b/src/dolphinmodel.cpp @@ -86,7 +86,7 @@ QVariant DolphinModel::data(const QModelIndex &index, int role) const retString = name.at(0).toUpper(); else if (item.isHidden()) { if(name.at(0) == '.') { - if(data.size() > 1 && name.at(1).isLetter()) + if(name.size() > 1 && name.at(1).isLetter()) retString = name.at(1).toUpper(); else retString = i18nc("@title:group Name", "Others"); |
