diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-03-28 15:46:46 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-03-28 15:46:46 +0100 |
commit | 473540ed565ce6c2f5767e29b956aad0dadf458d (patch) | |
tree | dd21f722a093e3d22d444da01830ae22493c0cba /src/mainwindow.cpp | |
parent | improved fullscreen (diff) | |
download | rekonq-473540ed565ce6c2f5767e29b956aad0dadf458d.tar.xz |
Added QNetworkDiskCache. Thanks to Ben Meyer's Qt Blog post
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 54516e78..6f12220f 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -236,6 +236,7 @@ void MainWindow::setupActions() m_historyBackMenu = new KMenu(this); historyBack->setMenu(m_historyBackMenu); connect(historyBack, SIGNAL( triggered(bool) ), this, SLOT( slotOpenPrevious() ) ); +// FIXME < --------------------------------------------------------------------------------------------------------------------------------------| connect(m_historyBackMenu, SIGNAL(aboutToShow()), this, SLOT(slotAboutToShowBackMenu())); connect(m_historyBackMenu, SIGNAL(triggered(QAction *)), this, SLOT(slotOpenActionUrl(QAction *))); actionCollection()->addAction( QLatin1String("history back"), historyBack); |