diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-04-30 18:08:25 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-04-30 18:08:25 +0200 |
commit | 54e258db126292e0f11201095e1f5b67b00e9833 (patch) | |
tree | 79b840b5f95ad0b741da2bc6911a1bcabf381621 /src/application.cpp | |
parent | rekonq 0.4.66 (diff) | |
download | rekonq-54e258db126292e0f11201095e1f5b67b00e9833.tar.xz |
QLatin1String -> QL1S
added cppcheck script
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()); } } |