diff options
| author | Friedrich W. H. Kossebau <[email protected]> | 2023-11-08 12:08:31 +0100 |
|---|---|---|
| committer | Friedrich W. H. Kossebau <[email protected]> | 2023-11-08 12:08:31 +0100 |
| commit | 91a4d5da94a6b0b60ad7989a402f654710103e99 (patch) | |
| tree | b91571ada43c9ed0eb5994af0f64652b971d9ef5 /src/dolphincontextmenu.cpp | |
| parent | 5d20c2f0e1d3400c95a98e2d3fc61566d06676f2 (diff) | |
Adapt to KConfigGroup name officially being a QString type
GIT_SILENT
Diffstat (limited to 'src/dolphincontextmenu.cpp')
| -rw-r--r-- | src/dolphincontextmenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dolphincontextmenu.cpp b/src/dolphincontextmenu.cpp index 34d2102ef..26d6eb238 100644 --- a/src/dolphincontextmenu.cpp +++ b/src/dolphincontextmenu.cpp @@ -357,7 +357,7 @@ void DolphinContextMenu::insertDefaultItemActions(const KFileItemListProperties addSeparator(); // Insert 'Move to Trash' and/or 'Delete' - const bool showDeleteAction = (KSharedConfig::openConfig()->group("KDE").readEntry("ShowDeleteCommand", false) || !properties.isLocal()); + const bool showDeleteAction = (KSharedConfig::openConfig()->group(QStringLiteral("KDE")).readEntry("ShowDeleteCommand", false) || !properties.isLocal()); const bool showMoveToTrashAction = (properties.isLocal() && properties.supportsMoving()); if (showDeleteAction && showMoveToTrashAction) { |
