From 7fec7ff9a096d288b66fce2699c7b8bc71f6fbbb Mon Sep 17 00:00:00 2001 From: Peter Penz Date: Wed, 22 Nov 2006 17:13:11 +0000 Subject: As KURL has been renamed to KUrl all classes and methods, which use the term 'URL', have been converted to use 'Url' instead (e. g. the class URLNavigator is called UrlNavigator now). svn path=/trunk/playground/utils/dolphin/; revision=606991 --- src/dolphindetailsview.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/dolphindetailsview.cpp') diff --git a/src/dolphindetailsview.cpp b/src/dolphindetailsview.cpp index 255804ca3..9e1e0ab27 100644 --- a/src/dolphindetailsview.cpp +++ b/src/dolphindetailsview.cpp @@ -86,7 +86,7 @@ DolphinDetailsView::DolphinDetailsView(DolphinView* parent) : connect(this, SIGNAL(itemRenamed(Q3ListViewItem*, const QString&, int)), this, SLOT(slotItemRenamed(Q3ListViewItem*, const QString&, int))); connect(this, SIGNAL(dropped(QDropEvent*, const KUrl::List&, const KUrl&)), - parent, SLOT(slotURLListDropped(QDropEvent*, const KUrl::List&, const KUrl&))); + parent, SLOT(slotUrlListDropped(QDropEvent*, const KUrl::List&, const KUrl&))); QClipboard* clipboard = QApplication::clipboard(); connect(clipboard, SIGNAL(dataChanged()), @@ -127,7 +127,7 @@ void DolphinDetailsView::endItemUpdates() } int index = 0; - const Q3ValueList history = m_dolphinView->urlHistory(index); + const Q3ValueList history = m_dolphinView->urlHistory(index); if (!history.isEmpty()) { KFileView* fileView = static_cast(this); fileView->setCurrentItem(history[index].currentFileName()); @@ -345,9 +345,9 @@ bool DolphinDetailsView::acceptDrag(QDropEvent* event) const void DolphinDetailsView::contentsDropEvent(QDropEvent* event) { // KFileDetailView::contentsDropEvent does not care whether the mouse - // cursor is above a filename or not, the destination URL is always - // the URL of the item. This is fixed here in a way that the destination - // URL is only the URL of the item if the cursor is above the filename. + // cursor is above a filename or not, the destination Url is always + // the Url of the item. This is fixed here in a way that the destination + // Url is only the Url of the item if the cursor is above the filename. const QPoint pos(QCursor::pos()); const QPoint viewportPos(viewport()->mapToGlobal(QPoint(0, 0))); Q3ListViewItem* item = itemAt(QPoint(pos.x() - viewportPos.x(), pos.y() - viewportPos.y())); -- cgit v1.3