From c51282fb7d0092c6a5587e33b1bdfb609290edf1 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Wed, 7 Apr 2010 02:10:20 +0200 Subject: Some stupid not so important fixes --- src/bookmarks/bookmarkcontextmenu.cpp | 7 ++++--- src/bookmarks/bookmarkcontextmenu.h | 2 ++ src/history/historypanel.cpp | 9 ++++++++- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/src/bookmarks/bookmarkcontextmenu.cpp b/src/bookmarks/bookmarkcontextmenu.cpp index 1d50cfe9..dedec097 100644 --- a/src/bookmarks/bookmarkcontextmenu.cpp +++ b/src/bookmarks/bookmarkcontextmenu.cpp @@ -31,14 +31,14 @@ #include "application.h" #include "bookmarksmanager.h" -// Qt Includes -#include - // KDE Includes #include #include #include +// Qt Includes +#include + BookmarkContextMenu::BookmarkContextMenu(const KBookmark & bookmark, KBookmarkManager *manager, KBookmarkOwner *owner, QWidget *parent) : KBookmarkContextMenu(bookmark, manager, owner, parent) @@ -321,3 +321,4 @@ void BookmarkContextMenu::bookmarkCurrentPage() manager()->emitChanged(); } + diff --git a/src/bookmarks/bookmarkcontextmenu.h b/src/bookmarks/bookmarkcontextmenu.h index 7f00738a..2028df39 100644 --- a/src/bookmarks/bookmarkcontextmenu.h +++ b/src/bookmarks/bookmarkcontextmenu.h @@ -37,6 +37,7 @@ class BookmarkContextMenu : public KBookmarkContextMenu { Q_OBJECT + public: BookmarkContextMenu(const KBookmark & bk, KBookmarkManager * manager, KBookmarkOwner *owner, QWidget * parent = 0); virtual void addActions(); @@ -62,3 +63,4 @@ private: }; #endif // BOOKMARKCONTEXTMENU_H + diff --git a/src/history/historypanel.cpp b/src/history/historypanel.cpp index ec84bc02..87b5fe55 100644 --- a/src/history/historypanel.cpp +++ b/src/history/historypanel.cpp @@ -119,6 +119,7 @@ void HistoryPanel::setup() connect(m_treeView, SIGNAL(contextMenuGroupRequested(const QPoint &)), this, SLOT(contextMenuGroup(const QPoint &))); } + void HistoryPanel::contextMenuItem(const QPoint &pos) { KMenu *menu = new KMenu(this); @@ -145,6 +146,7 @@ void HistoryPanel::contextMenuItem(const QPoint &pos) menu->popup(m_treeView->mapToGlobal(pos)); } + void HistoryPanel::contextMenuGroup(const QPoint &pos) { KMenu *menu = new KMenu(this); @@ -160,6 +162,7 @@ void HistoryPanel::contextMenuGroup(const QPoint &pos) menu->popup(m_treeView->mapToGlobal(pos)); } + void HistoryPanel::openAll() { QModelIndex index = m_treeView->currentIndex(); @@ -173,10 +176,14 @@ void HistoryPanel::openAll() if(allChild.length() > 8) { - if(!(KMessageBox::warningContinueCancel(this, i18n("You are about to open %1 tabs.\nAre you sure ?", QString::number(allChild.length()))) == KMessageBox::Continue)) + if( !(KMessageBox::warningContinueCancel(this, + i18n("You are about to open %1 tabs.\nAre you sure ?", + QString::number(allChild.length()))) == KMessageBox::Continue) + ) return; } for(int i = 0; i < allChild.length(); i++) emit openUrl(allChild.at(i).url(), Rekonq::SettingOpenTab); } + -- cgit v1.2.1