From 5652dcb2b728d4e34114953077ec958b9112b9cd Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Sun, 18 Jul 2021 13:27:10 +0300 Subject: [PATCH] generic: remove kfmclient reference Signed-off-by: Ivailo Monev --- kdecore/kernel/kglobal.h | 2 +- kio/DESKTOP_ENTRY_STANDARD | 2 +- kio/kio/kfileitemactions.h | 6 +++--- kio/kio/kmessageboxwrapper.h | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/kdecore/kernel/kglobal.h b/kdecore/kernel/kglobal.h index d943cb51..84d1dbcf 100644 --- a/kdecore/kernel/kglobal.h +++ b/kdecore/kernel/kglobal.h @@ -439,7 +439,7 @@ namespace KGlobal * will automatically be exited. Otherwise, the application will not exit automatically. * * This is used by KMainWindow to allow quitting after the first mainwindow is created, - * and is used by special applications like kfmclient, to allow quitting even though + * and is used by special applications like kioclient, to allow quitting even though * no mainwindow was created. * * However, don't try to call setAllowQuit(false) in applications, it doesn't make sense. diff --git a/kio/DESKTOP_ENTRY_STANDARD b/kio/DESKTOP_ENTRY_STANDARD index e19cc24c..1142d2b4 100644 --- a/kio/DESKTOP_ENTRY_STANDARD +++ b/kio/DESKTOP_ENTRY_STANDARD @@ -173,7 +173,7 @@ Recognized desktop entry keys | NoDisplay | application with mimetypes, so that it gets launched from a | boolean | NO | NO | 1-4 | | | file manager (or other apps), without having a menu entry for | | | | | | | it (there are tons of good reasons for this, including e.g. | | | | | - | | the netscape -remote, or kfmclient openURL kind of stuff). | | | | | + | | the netscape -remote, or kioclient openURL kind of stuff). | | | | | |------------------------+----------------------------------------------------------------+--------------+------+-------+------| | Comment | Tooltip for the entry, for example "View sites on the | localestring | NO | YES | 1-4 | | | Internet"; should not be redundant with Name or GenericName. | | | | | diff --git a/kio/kio/kfileitemactions.h b/kio/kio/kfileitemactions.h index b3b76052..2e309475 100644 --- a/kio/kio/kfileitemactions.h +++ b/kio/kio/kfileitemactions.h @@ -78,7 +78,7 @@ public: * All actions are created as children of the menu. * @param menu the QMenu where to add actions * @param traderConstraint this constraint allows to exclude the current application - * from the "open with" list. Example: "DesktopEntryName != 'kfmclient'". + * from the "open with" list. Example: "DesktopEntryName != 'dolphin'". * (Default value added in kdelibs-4.5, pass QString() explicitely for earlier versions). */ void addOpenWithActionsTo(QMenu* menu, const QString& traderConstraint = QString()); @@ -86,7 +86,7 @@ public: /** * Returns an action for the preferred application only. * @param traderConstraint this constraint allows to exclude the current application - * from the "open with" list. Example: "DesktopEntryName != 'kfmclient'". + * from the "open with" list. Example: "DesktopEntryName != 'dolphin'". * @return the action - or 0 if no application was found. */ KAction* preferredOpenWithAction(const QString& traderConstraint); @@ -110,7 +110,7 @@ public: * Returns the applications associated with all the given mimetypes. * @param mimeTypeList the mimetypes * @param traderConstraint this optional constraint allows to exclude the current application - * from the "open with" list. Example: "DesktopEntryName != 'kfmclient'". + * from the "open with" list. Example: "DesktopEntryName != 'dolphin'". * @return the sorted list of services. * @since 4.4 */ diff --git a/kio/kio/kmessageboxwrapper.h b/kio/kio/kmessageboxwrapper.h index 5af2ff61..d8e0c402 100644 --- a/kio/kio/kmessageboxwrapper.h +++ b/kio/kio/kmessageboxwrapper.h @@ -26,7 +26,7 @@ /** * @internal * Allows KIO classes to display dialog boxes with the correct - * theme/style even in non-GUI apps like kded and kfmclient + * theme/style even in non-GUI apps like kded and kioclient */ class KIO_EXPORT KMessageBoxWrapper : public KMessageBox {