summaryrefslogtreecommitdiff
path: root/src/application.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2010-04-30 18:08:25 +0200
committerAndrea Diamantini <adjam7@gmail.com>2010-04-30 18:08:25 +0200
commit54e258db126292e0f11201095e1f5b67b00e9833 (patch)
tree79b840b5f95ad0b741da2bc6911a1bcabf381621 /src/application.cpp
parentrekonq 0.4.66 (diff)
downloadrekonq-54e258db126292e0f11201095e1f5b67b00e9833.tar.xz
QLatin1String -> QL1S
added cppcheck script
Diffstat (limited to 'src/application.cpp')
-rw-r--r--src/application.cpp2
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());
}
}