From a3052c3942fc8c1354a9d26878f517e677eccb17 Mon Sep 17 00:00:00 2001 From: Elvis Angelaccio Date: Tue, 19 May 2020 00:22:26 +0200 Subject: DolphinView: rename new methods to copy/move urls DolphinView doesn't know anything about split views and it shouldn't. Rename these new methods to what they actually do (just copy or move to a given QUrl). --- src/views/dolphinview.h | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'src/views/dolphinview.h') diff --git a/src/views/dolphinview.h b/src/views/dolphinview.h index 0b2c0bce4..4306b3eb7 100644 --- a/src/views/dolphinview.h +++ b/src/views/dolphinview.h @@ -371,16 +371,14 @@ public slots: void copySelectedItemsToClipboard(); /** - * Copies all selected items to the inactive split view. - * Only used in Split View. + * Copies all selected items to @p destinationUrl. */ - void copySelectedItemsToInactiveSplitView(const KFileItemList &selection, const QUrl &destinationUrl); + void copySelectedItems(const KFileItemList &selection, const QUrl &destinationUrl); /** - * Moves all selected items to the inactive split view. - * Only used in Split View. + * Moves all selected items to @p destinationUrl. */ - void moveSelectedItemsToInactiveSplitView(const KFileItemList &selection, const QUrl &destinationUrl); + void moveSelectedItems(const KFileItemList &selection, const QUrl &destinationUrl); /** Pastes the clipboard data to this view. */ void paste(); -- cgit v1.3.1