summaryrefslogtreecommitdiff
path: root/src/bookmarks.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2008-12-30 16:56:40 +0100
committerAndrea Diamantini <adjam7@gmail.com>2008-12-30 16:56:40 +0100
commitc0ff12b2fbfcba0f43c9cf501ff94bccaf9c7f89 (patch)
tree0627ff26b4899e5c0757bfea8fbd1248f63ef691 /src/bookmarks.cpp
parentIgnoring .ctagsdb (diff)
parentFixed FindBar crash && refactored to look like kate searchbar (diff)
downloadrekonq-c0ff12b2fbfcba0f43c9cf501ff94bccaf9c7f89.tar.xz
Merge branch 'xmlgui'
Diffstat (limited to 'src/bookmarks.cpp')
-rw-r--r--src/bookmarks.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bookmarks.cpp b/src/bookmarks.cpp
index ec46dd53..3cb65e38 100644
--- a/src/bookmarks.cpp
+++ b/src/bookmarks.cpp
@@ -21,7 +21,7 @@
#include "bookmarks.h"
#include "bookmarks.moc"
-#include "browsermainwindow.h"
+#include "mainwindow.h"
#include "webview.h"
// KDE Includes
@@ -31,7 +31,7 @@ OwnBookMarks::OwnBookMarks(KMainWindow *parent)
: QObject(parent)
, KBookmarkOwner()
{
- m_parent = qobject_cast<BrowserMainWindow*>( parent );
+ m_parent = qobject_cast<MainWindow*>( parent );
connect( this, SIGNAL( openUrl( const KUrl &) ) , parent , SLOT( loadUrl( const KUrl & ) ) );
}
@@ -55,7 +55,7 @@ QString OwnBookMarks::currentTitle() const
}
-// -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
+//---------------------------------------------------------------------------------------------------------------------
BookmarksMenu::BookmarksMenu(KMainWindow *parent)