diff options
| author | Peter Penz <[email protected]> | 2008-11-08 16:22:30 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2008-11-08 16:22:30 +0000 |
| commit | a7838db28e24e9618a39954524f055dc3335f7a9 (patch) | |
| tree | c4c653405a259e87ac34163efd0d51db07ba242d /src/treeviewsidebarpage.cpp | |
| parent | d5bc6cfa74e21668788d42721dcdb4818a072366 (diff) | |
* implement the DragAndDropHelper as singleton derived from QObject, so that emitting of signals is possible
* show an information message in the statusbar, if items are dragged into the same directory
TODO: although the signal seems to get connected correctly, the slot DolphinMainWindow::showInformationMessage() is not invoked when the signal is emitted -> will debug this later, it is important that the new string is added before the message freeze
svn path=/trunk/KDE/kdebase/apps/; revision=881627
Diffstat (limited to 'src/treeviewsidebarpage.cpp')
| -rw-r--r-- | src/treeviewsidebarpage.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/treeviewsidebarpage.cpp b/src/treeviewsidebarpage.cpp index 32779ffce..04cef91ae 100644 --- a/src/treeviewsidebarpage.cpp +++ b/src/treeviewsidebarpage.cpp @@ -207,7 +207,7 @@ void TreeViewSidebarPage::dropUrls(const QModelIndex& index, QDropEvent* event) KFileItem item = m_dolphinModel->itemForIndex(dirIndex); Q_ASSERT(!item.isNull()); if (item.isDir()) { - DragAndDropHelper::dropUrls(item, item.url(), event, this); + DragAndDropHelper::instance().dropUrls(item, item.url(), event, this); } } } |
