generic: remove kfmclient reference

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-07-18 13:27:10 +03:00
parent ee85422b2d
commit 5652dcb2b7
4 changed files with 6 additions and 6 deletions

View file

@ -439,7 +439,7 @@ namespace KGlobal
* will automatically be exited. Otherwise, the application will not exit automatically. * 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, * 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. * no mainwindow was created.
* *
* However, don't try to call setAllowQuit(false) in applications, it doesn't make sense. * However, don't try to call setAllowQuit(false) in applications, it doesn't make sense.

View file

@ -173,7 +173,7 @@ Recognized desktop entry keys
| NoDisplay | application with mimetypes, so that it gets launched from a | boolean | NO | NO | 1-4 | | 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 | | | | | | | file manager (or other apps), without having a menu entry for | | | | |
| | it (there are tons of good reasons for this, including e.g. | | | | | | | 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 | | 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. | | | | | | | Internet"; should not be redundant with Name or GenericName. | | | | |

View file

@ -78,7 +78,7 @@ public:
* All actions are created as children of the menu. * All actions are created as children of the menu.
* @param menu the QMenu where to add actions * @param menu the QMenu where to add actions
* @param traderConstraint this constraint allows to exclude the current application * @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). * (Default value added in kdelibs-4.5, pass QString() explicitely for earlier versions).
*/ */
void addOpenWithActionsTo(QMenu* menu, const QString& traderConstraint = QString()); void addOpenWithActionsTo(QMenu* menu, const QString& traderConstraint = QString());
@ -86,7 +86,7 @@ public:
/** /**
* Returns an action for the preferred application only. * Returns an action for the preferred application only.
* @param traderConstraint this constraint allows to exclude the current application * @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. * @return the action - or 0 if no application was found.
*/ */
KAction* preferredOpenWithAction(const QString& traderConstraint); KAction* preferredOpenWithAction(const QString& traderConstraint);
@ -110,7 +110,7 @@ public:
* Returns the applications associated with all the given mimetypes. * Returns the applications associated with all the given mimetypes.
* @param mimeTypeList the mimetypes * @param mimeTypeList the mimetypes
* @param traderConstraint this optional constraint allows to exclude the current application * @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. * @return the sorted list of services.
* @since 4.4 * @since 4.4
*/ */

View file

@ -26,7 +26,7 @@
/** /**
* @internal * @internal
* Allows KIO classes to display dialog boxes with the correct * 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 class KIO_EXPORT KMessageBoxWrapper : public KMessageBox
{ {