| 22 | |
| 23 | int i=0; |
| 24 | foreach(QString item, items) |
| 25 | { |
| 26 | if (i>0 && !item.isEmpty()) |
| 27 | { |
| 28 | if (!name.isEmpty()) name.append("/"); |
| 29 | name.append(item); |
| 30 | } |
| 31 | i++; |
| 32 | } |
| 33 | |
| 34 | if (items.count()>1) |
| 35 | { |
nothing calls this directly
no outgoing calls
no test coverage detected