diff options
| author | Peter Penz <[email protected]> | 2008-10-01 21:39:35 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-10-01 21:39:35 +0000 |
| commit | aa0b09dac43ec2a58bd32a1e08d59acd35bd86aa (patch) | |
| tree | 53613eaf7ae13768286a20f3ee77edde191ce1c3 /src/dolphinfileplacesview.cpp | |
| parent | db2013a2fd518fa7b8c37f26840b6c0d36f56fe7 (diff) | |
* adjusted Dolphin to use KonqOperations::doDrop() instead of using a custom implementation
* used new signals jobRecordingStarted() and jobRecordingFinished from FileUndoManager to inform the user in the statusbar when a recorded command has been finished
svn path=/trunk/KDE/kdebase/apps/; revision=866777
Diffstat (limited to 'src/dolphinfileplacesview.cpp')
| -rw-r--r-- | src/dolphinfileplacesview.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/dolphinfileplacesview.cpp b/src/dolphinfileplacesview.cpp index a2291275d..c6626e010 100644 --- a/src/dolphinfileplacesview.cpp +++ b/src/dolphinfileplacesview.cpp @@ -45,11 +45,7 @@ void DolphinFilePlacesView::mousePressEvent(QMouseEvent* event) void DolphinFilePlacesView::slotUrlsDropped(const KUrl& dest, QDropEvent* event, QWidget* parent) { - DolphinDropController dropController(parent); - // forward doingOperation signal up to the mainwindow - connect(&dropController, SIGNAL(doingOperation(KIO::FileUndoManager::CommandType)), - this, SIGNAL(doingOperation(KIO::FileUndoManager::CommandType))); - dropController.dropUrls(KFileItem(), dest, event); + DolphinDropController::dropUrls(KFileItem(), dest, event, parent); } void DolphinFilePlacesView::emitExtendedUrlChangedSignal(const KUrl& url) |
