////FileSystemItem
| 154 | |
| 155 | /////////FileSystemItem |
| 156 | static QString |
| 157 | generateChildAbsoluteName(FileSystemItem* parent, |
| 158 | const QString& name) |
| 159 | { |
| 160 | QString childName = parent->absoluteFilePath(); |
| 161 | |
| 162 | if ( !childName.endsWith( QChar::fromLatin1('/') ) ) { |
| 163 | childName.append( QChar::fromLatin1('/') ); |
| 164 | } |
| 165 | childName.append(name); |
| 166 | |
| 167 | return childName; |
| 168 | } |
| 169 | |
| 170 | struct FileSystemItemPrivate |
| 171 | { |
no test coverage detected