diff options
| author | John Tapsell <[email protected]> | 2007-12-04 02:50:00 +0000 |
|---|---|---|
| committer | John Tapsell <[email protected]> | 2007-12-04 02:50:00 +0000 |
| commit | 5dff77a46d3ac860c9e8f46d8dd1a0da9230a906 (patch) | |
| tree | 940d5dcb75351adecf0b3cc3135a7892f0be7513 /src | |
| parent | 6c9ac61e3ca5840560e22f9e5847bfb224024ef0 (diff) | |
Small compile fix
svn path=/trunk/KDE/kdebase/apps/; revision=744667
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"); |
