| 95 | } |
| 96 | |
| 97 | QString UrlDocument::title(TitleType type) const |
| 98 | { |
| 99 | if (type == Extended) |
| 100 | return Document::title() + QLatin1String(" (") + url().toDisplayString(QUrl::PreferLocalFile) + QLatin1Char(')'); |
| 101 | else |
| 102 | return Document::title(); |
| 103 | } |
| 104 | |
| 105 | } |
| 106 |