┌   ┐
54
└   ┘

summaryrefslogtreecommitdiff
path: root/src/views/dolphinremoteencoding.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/views/dolphinremoteencoding.cpp
parent5d20c2f0e1d3400c95a98e2d3fc61566d06676f2 (diff)
Adapt to KConfigGroup name officially being a QString type
GIT_SILENT
Diffstat (limited to 'src/views/dolphinremoteencoding.cpp')
-rw-r--r--src/views/dolphinremoteencoding.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/views/dolphinremoteencoding.cpp b/src/views/dolphinremoteencoding.cpp
index a3007523c..c9e973987 100644
--- a/src/views/dolphinremoteencoding.cpp
+++ b/src/views/dolphinremoteencoding.cpp
@@ -198,8 +198,8 @@ void DolphinRemoteEncoding::slotDefault()
qCDebug(DolphinDebug) << "Domain to remove: " << *it;
if (config.hasGroup(*it)) {
config.deleteGroup(*it);
- } else if (config.group("").hasKey(*it)) {
- config.group("").deleteEntry(*it); //don't know what group name is supposed to be XXX
+ } else if (config.group(QString()).hasKey(*it)) {
+ config.group(QString()).deleteEntry(*it); // don't know what group name is supposed to be XXX
}
}
}