summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2012-05-10 00:35:46 +0200
committerAndrea Diamantini <adjam7@gmail.com>2012-05-15 09:53:42 +0200
commita256bbf4fa61ede40c19ff8e9781caad95b3d7cc (patch)
tree99e09021e82621a958f32cb0e45c65fb7fae9c86 /src
parentLimit default history to two days entries shown (diff)
downloadrekonq-a256bbf4fa61ede40c19ff8e9781caad95b3d7cc.tar.xz
Calm down kDebug() calls on NewTabPage
Diffstat (limited to 'src')
-rw-r--r--src/newtabpage.cpp12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/newtabpage.cpp b/src/newtabpage.cpp
index 94a10845..9b5c1559 100644
--- a/src/newtabpage.cpp
+++ b/src/newtabpage.cpp
@@ -67,7 +67,6 @@ NewTabPage::NewTabPage(QWebFrame *frame)
QString htmlFilePath = KStandardDirs::locate("data", "rekonq/htmls/home.html");
QString dataPath = QL1S("file://") + htmlFilePath;
dataPath.remove(QL1S("/htmls/home.html"));
- kDebug() << "data path: " << dataPath;
QFile file(htmlFilePath);
bool isOpened = file.open(QIODevice::ReadOnly);
@@ -126,8 +125,6 @@ void NewTabPage::generate(const KUrl &url)
{
const int winIndex = url.queryItem(QL1S("win")).toInt();
const int tabIndex = url.queryItem(QL1S("tab")).toInt();
- kDebug() << "win = " << winIndex;
- kDebug() << "tab = " << tabIndex;
MainWindow *w = rApp->mainWindowList().at(winIndex).data();
@@ -145,8 +142,6 @@ void NewTabPage::generate(const KUrl &url)
{
const int winIndex = url.queryItem(QL1S("win")).toInt();
const int tabIndex = url.queryItem(QL1S("tab")).toInt();
- kDebug() << "win = " << winIndex;
- kDebug() << "tab = " << tabIndex;
MainWindow *w = rApp->mainWindowList().at(winIndex).data();
w->mainView()->closeTab(tabIndex);
@@ -161,7 +156,6 @@ void NewTabPage::generate(const KUrl &url)
if (url.fileName() == QL1S("restore"))
{
const int tabIndex = url.queryItem(QL1S("tab")).toInt();
- kDebug() << "tab = " << tabIndex;
rApp->mainWindow()->mainView()->restoreClosedTab(tabIndex, false);
return;
@@ -216,8 +210,7 @@ void NewTabPage::loadPageForUrl(const KUrl &url)
parentFrame->setHtml(m_html);
m_root = parentFrame->documentElement().findFirst(QL1S("#content"));
-kDebug() << "IS NULL? " << m_root.isNull();
-kDebug() << "URL: " << url;
+
browsingMenu(url);
QString title;
@@ -317,7 +310,6 @@ void NewTabPage::browsingMenu(const KUrl &currentUrl)
else if (currentUrl == QL1S("about:home") && it.findFirst(aTagString).attribute(hrefAttributeString) == QL1S("about:favorites"))
it.addClass(QL1S("current"));
m_root.document().findFirst(QL1S("#navigation")).appendInside(it);
- kDebug() << "is null find nav? " << m_root.document().findFirst(QL1S("#navigation")).isNull();
}
}
@@ -462,7 +454,6 @@ void NewTabPage::closedTabsPage()
QList<TabHistory> links = rApp->mainWindow()->mainView()->recentlyClosedTabs();
- kDebug() << "CLOSED TABS: " << links.count();
if (links.isEmpty())
{
m_root.addClass(QL1S("empty"));
@@ -473,7 +464,6 @@ void NewTabPage::closedTabsPage()
for (int i = 0; i < links.count(); ++i)
{
TabHistory item = links.at(i);
- kDebug() << "URL " << i << " : " << item.url;
QWebElement prev;
if (item.url.isEmpty())