diff options
| author | Peter Penz <[email protected]> | 2006-11-22 17:13:11 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2006-11-22 17:13:11 +0000 |
| commit | 7fec7ff9a096d288b66fce2699c7b8bc71f6fbbb (patch) | |
| tree | 48c9e04fccc22a57d0871273b610f2b5da8edd19 /src/dolphiniconsview.cpp | |
| parent | 9075797f9b529d958fa1b6a2a4fe45bc00c4b69d (diff) | |
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
Diffstat (limited to 'src/dolphiniconsview.cpp')
| -rw-r--r-- | src/dolphiniconsview.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dolphiniconsview.cpp b/src/dolphiniconsview.cpp index e722948b2..30dd7bb4d 100644 --- a/src/dolphiniconsview.cpp +++ b/src/dolphiniconsview.cpp @@ -69,7 +69,7 @@ DolphinIconsView::DolphinIconsView(DolphinView* parent, LayoutMode layoutMode) : connect(this, SIGNAL(itemRenamed(Q3IconViewItem*, const QString&)), this, SLOT(slotItemRenamed(Q3IconViewItem*, const QString&))); 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()), @@ -126,7 +126,7 @@ void DolphinIconsView::endItemUpdates() } int index = 0; - const Q3ValueList<URLNavigator::HistoryElem> history = m_dolphinView->urlHistory(index); + const Q3ValueList<UrlNavigator::HistoryElem> history = m_dolphinView->urlHistory(index); if (!history.isEmpty()) { KFileView* fileView = static_cast<KFileView*>(this); fileView->setCurrentItem(history[index].currentFileName()); @@ -332,7 +332,7 @@ Q3DragObject* DolphinIconsView::dragObject() } /* This should be ported to QMimeData - Q3DragObject* dragObj = new KURLDrag(urls, widget()); + Q3DragObject* dragObj = new KUrlDrag(urls, widget()); dragObj->setPixmap(pixmap); return dragObj; */ |
