From 8d8f29078b2e7fd07e8b21fe238a76f9eb134492 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Thu, 21 Oct 2010 23:28:53 +0200 Subject: This commit fixes icons handling for "rekonq pages" (eg: about urls). It also contains a cleaned version of the WebTab::url() method (the previous one was not working on loading pages. And also immediately after the loadFinished signal) This should also fix some "bad" handling on back/forward buttons. Finally, it contains some unrelated QLatin1String --> QL1S changes. Benjamin, I spoke too early about those. I squashed merged my work and removed previous branch :( --- src/mainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mainwindow.cpp') diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 4d3dfc91..555e58ae 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -1284,7 +1284,7 @@ void MainWindow::populateEncodingMenu() QList mibs = QTextCodec::availableMibs(); Q_FOREACH (const int &mib, mibs) { - QString codec = QLatin1String(QTextCodec::codecForMib(mib)->name()); + QString codec = QL1S(QTextCodec::codecForMib(mib)->name()); codecs.append(codec); } codecs.sort(); -- cgit v1.2.1