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