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/mainview.cpp | |
parent | rekonq 0.4.66 (diff) | |
download | rekonq-54e258db126292e0f11201095e1f5b67b00e9833.tar.xz |
QLatin1String -> QL1S
added cppcheck script
Diffstat (limited to 'src/mainview.cpp')
-rw-r--r-- | src/mainview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainview.cpp b/src/mainview.cpp index 50c82025..4dc95b26 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -492,7 +492,7 @@ void MainView::closeTab(int index, bool del) } // store close tab except homepage - if (!tab->url().prettyUrl().startsWith(QLatin1String("about:")) && !tab->url().isEmpty()) + if (!tab->url().prettyUrl().startsWith(QL1S("about:")) && !tab->url().isEmpty()) { QString title = tab->view()->title(); QString url = tab->url().prettyUrl(); |