diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-05 00:27:23 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-05 00:27:23 +0100 |
commit | b9f8ccd9099fa48406203ad5c5389266b3318d88 (patch) | |
tree | 3725c935fb14346301df79f1ec8fb4e6eebca66f /src/bookmarks.cpp | |
parent | New Bookmarks menu, sharing bkmrs with Konqueror (diff) | |
download | rekonq-b9f8ccd9099fa48406203ad5c5389266b3318d88.tar.xz |
QUrl --> KUrl!
Diffstat (limited to 'src/bookmarks.cpp')
-rw-r--r-- | src/bookmarks.cpp | 4 |
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 |