diff options
Diffstat (limited to 'src/application.cpp')
-rw-r--r-- | src/application.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/application.cpp b/src/application.cpp index 02ceed4b..b1419d00 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -381,7 +381,7 @@ void Application::loadResolvedUrl(ThreadWeaver::Job *job) // we are sure of the url now, let's add it to history // anyway we store here just http sites because local and ftp ones are // added trough the protocol handler and the other are ignored - if (url.protocol() == QLatin1String("http") || url.protocol() == QLatin1String("https")) + if (url.protocol() == QL1S("http") || url.protocol() == QL1S("https")) historyManager()->addHistoryEntry(url.prettyUrl()); } } |