┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/trash/dolphintrash.cpp
diff options
context:
space:
mode:
authorFriedrich W. H. Kossebau <[email protected]>2023-11-08 12:08:31 +0100
committerFriedrich W. H. Kossebau <[email protected]>2023-11-08 12:08:31 +0100
commit91a4d5da94a6b0b60ad7989a402f654710103e99 (patch)
treeb91571ada43c9ed0eb5994af0f64652b971d9ef5 /src/trash/dolphintrash.cpp
parent5d20c2f0e1d3400c95a98e2d3fc61566d06676f2 (diff)
Adapt to KConfigGroup name officially being a QString type
GIT_SILENT
Diffstat (limited to 'src/trash/dolphintrash.cpp')
-rw-r--r--src/trash/dolphintrash.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/trash/dolphintrash.cpp b/src/trash/dolphintrash.cpp
index dd71135a5..0bb61ff28 100644
--- a/src/trash/dolphintrash.cpp
+++ b/src/trash/dolphintrash.cpp
@@ -64,7 +64,7 @@ void Trash::empty(QWidget *window)
bool Trash::isEmpty()
{
KConfig trashConfig(QStringLiteral("trashrc"), KConfig::SimpleConfig);
- return (trashConfig.group("Status").readEntry("Empty", true));
+ return (trashConfig.group(QStringLiteral("Status")).readEntry("Empty", true));
}
#include "moc_dolphintrash.cpp"