summaryrefslogtreecommitdiff
path: root/src/bookmarks.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2008-12-05 00:27:23 +0100
committerAndrea Diamantini <adjam7@gmail.com>2008-12-05 00:27:23 +0100
commitb9f8ccd9099fa48406203ad5c5389266b3318d88 (patch)
tree3725c935fb14346301df79f1ec8fb4e6eebca66f /src/bookmarks.cpp
parentNew Bookmarks menu, sharing bkmrs with Konqueror (diff)
downloadrekonq-b9f8ccd9099fa48406203ad5c5389266b3318d88.tar.xz
QUrl --> KUrl!
Diffstat (limited to 'src/bookmarks.cpp')
-rw-r--r--src/bookmarks.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bookmarks.cpp b/src/bookmarks.cpp
index 6f9c3beb..e03bf3dc 100644
--- a/src/bookmarks.cpp
+++ b/src/bookmarks.cpp
@@ -32,13 +32,13 @@ OwnBookMarks::OwnBookMarks(KMainWindow *parent)
, KBookmarkOwner()
{
m_parent = qobject_cast<BrowserMainWindow*>( parent );
- connect( this, SIGNAL( openUrl( const QUrl &) ) , parent , SLOT( loadUrl( const QUrl & ) ) );
+ connect( this, SIGNAL( openUrl( const KUrl &) ) , parent , SLOT( loadUrl( const KUrl & ) ) );
}
void OwnBookMarks::openBookmark (const KBookmark & b, Qt::MouseButtons , Qt::KeyboardModifiers )
{
- emit openUrl( (QUrl)b.url() );
+ emit openUrl( b.url() );
}
QString OwnBookMarks::currentUrl() const