summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-04-10 18:57:01 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-04-10 18:57:01 +0200
commit6d37e632d445b51f5321b4138dcd1fce0cae30f9 (patch)
tree0802d82262600af121d1e522bb2dfe926e661b4f /src/mainwindow.cpp
parentPorted to rekonq coding style (diff)
downloadrekonq-6d37e632d445b51f5321b4138dcd1fce0cae30f9.tar.xz
Fixed webview API
Removed some unuseful comments
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 76312c32..82f555ef 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -272,7 +272,7 @@ void MainWindow::setupActions()
a = new KAction(KIcon("tab-close"), i18n("&Close Tab"), this);
a->setShortcut(KShortcut(Qt::CTRL + Qt::Key_W));
actionCollection()->addAction(QLatin1String("close_tab"), a);
- connect(a, SIGNAL(triggered(bool)), m_view, SLOT(closeTab()));
+ connect(a, SIGNAL(triggered(bool)), m_view, SLOT(slotCloseTab()));
a = new KAction(i18n("Show Next Tab"), this);
a->setShortcuts(QApplication::isRightToLeft() ? KStandardShortcut::tabPrev() : KStandardShortcut::tabNext());
@@ -341,7 +341,7 @@ void MainWindow::slotUpdateConfiguration()
void MainWindow::slotUpdateBrowser()
{
slotUpdateConfiguration();
- mainView()->reloadAllTabs();
+ mainView()->slotReloadAllTabs();
}
@@ -679,7 +679,7 @@ void MainWindow::slotToggleInspector(bool enable)
i18n("Web Inspector"));
if (result == KMessageBox::Yes)
{
- m_view->reloadAllTabs();
+ m_view->slotReloadAllTabs();
}
}
}