diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-03-14 23:46:00 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-03-14 23:46:00 +0100 |
commit | 654e071871b8a72df320189cbf320e5b3cdb4cfe (patch) | |
tree | abcb251e1faf0c2b2b12040076dc5a79f1a7d23d /src/mainwindow.h | |
parent | Changed createRequest method for KIO debugging purposes.. (diff) | |
parent | Use default value instead of a different function (diff) | |
download | rekonq-654e071871b8a72df320189cbf320e5b3cdb4cfe.tar.xz |
Merge commit 'refs/merge-requests/105' of git://gitorious.org/rekonq/mainline into m105
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r-- | src/mainwindow.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index 57b88dfd..b693fec1 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -87,7 +87,7 @@ private: void setupPanels(); public slots: - void homePage(); + void homePage(Qt::MouseButtons = Qt::LeftButton); /** * Notifies a message in a popup @@ -122,8 +122,8 @@ private slots: void updateWindowTitle(const QString &title = QString()); // history related - void openPrevious(); - void openNext(); + void openPrevious(Qt::MouseButtons = Qt::LeftButton); + void openNext(Qt::MouseButtons = Qt::LeftButton); // Find Action slots void find(const QString &); |