summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-03-22 11:35:32 +0100
committerAndrea Diamantini <adjam7@gmail.com>2009-03-22 11:35:32 +0100
commitd9575d35726de15d58061455016b5d1fa8a0e421 (patch)
treec2e6cda88f09aeeff2857cf2490c830b733c5a8c
parentFixing loading of konqueror bookmarks in a unusual place or missing.. (diff)
downloadrekonq-d9575d35726de15d58061455016b5d1fa8a0e421.tar.xz
Updated TODO
-rw-r--r--TODO5
-rw-r--r--src/bookmarks.cpp4
2 files changed, 8 insertions, 1 deletions
diff --git a/TODO b/TODO
index f5464787..afed15c9 100644
--- a/TODO
+++ b/TODO
@@ -4,10 +4,12 @@ To 0.0.5
DONE tabbar: fixed dimension
DONE tabbar: hide if just one
- bookmarks update
+DONE loading right bookmark file
- improve "save as"
- load just ONE site at start
- loading right sites as "external browser"
+
To 0.0.4
- improve DOCUMENTATION
- fix docs
@@ -21,8 +23,10 @@ To 0.0.4
- KDE proxy support
- QWebPluginFactory subclass to load KParts into QtWebKit.
+
+ ------------------------
+
1. check the lines above...
2. Improve docs
DONE. Let rekonq be a Singleton app. (And work well..)
@@ -32,4 +36,5 @@ DONE. fix load at startup
DONE. fix FONTS problems between webkit && KDE settings (at least, here..)
DONE. enable flash support !!
+
+ ------------------------
diff --git a/src/bookmarks.cpp b/src/bookmarks.cpp
index 6b6d549c..9b48de6f 100644
--- a/src/bookmarks.cpp
+++ b/src/bookmarks.cpp
@@ -37,6 +37,7 @@
// Qt Includes
#include <QFile>
+
OwnBookMarks::OwnBookMarks(KMainWindow *parent)
: QObject(parent)
, KBookmarkOwner()
@@ -53,6 +54,7 @@ void OwnBookMarks::openBookmark (const KBookmark & b, Qt::MouseButtons mb, Qt::K
emit openUrl( b.url() );
}
+
QString OwnBookMarks::currentUrl() const
{
QUrl url = m_parent->currentTab()->url();
@@ -75,6 +77,7 @@ BookmarksMenu::BookmarksMenu( KBookmarkManager* manager, KBookmarkOwner* owner,
{
}
+
KMenu* BookmarksMenu::viewContextMenu(QAction* action)
{
return contextMenu( action );
@@ -164,4 +167,3 @@ void BookmarksProvider::contextMenu(const QPoint & point)
menu->popup( m_bmToolbar->mapToGlobal( point ));
}
-