Bug 427552 - KMainWindow::canBeRestored(1) inappropriately returns true when there is no session restore data
Summary: KMainWindow::canBeRestored(1) inappropriately returns true when there is no s...
Status: RESOLVED FIXED
Alias: None
Product: frameworks-kxmlgui
Classification: Frameworks and Libraries
Component: general (show other bugs)
Version: unspecified
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: kdelibs bugs
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2020-10-11 19:09 UTC by Nate Graham
Modified: 2025-03-09 19:38 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:
Sentry Crash Report:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Nate Graham 2020-10-11 19:09:35 UTC
Consider the following code:

KConfigGui::setSessionConfig(QStringLiteral("myApp"), QStringLiteral("myApp"));
if (KMainWindow::canBeRestored(1)) {
    // do a bunch of stuff
}


KMainWindow::canBeRestored(1) will return true even though the newly-created session config is empty. This is because internally, it's doing this:

const int n = group.readEntry("NumberOfWindows", 1);
return number >= 1 && number <= n;


So NumberOfWindows is not set, which causes it to fall back to 1. And then the function returns true because the number 1 satisfies both criteria.

This can be trivially fixed by changing the default value of the readEntry() call from 1 to 0, and that's what I did in https://invent.kde.org/frameworks/kxmlgui/-/merge_requests/. However this so breaks Dolphin's manual session restore feature (which accidentally takes advantage of this bug to function) and I had to revert it.

This bug report tracks this issue so that the fix can be merged after Dolphin and potentially other apps are fixed, or KF6--whichever comes first.
Comment 1 Christoph Cullmann 2025-01-24 18:30:59 UTC
Could we just fix that?
Comment 2 Christoph Cullmann 2025-01-24 18:37:43 UTC
Kate uses

    // restore all windows ;)
    for (int n = 1; KMainWindow::canBeRestored(n); n++) {
        newMainWindow(sessionConfig, QString::number(n));
    }

too, that is not good if this always does like there is win 1.
Comment 3 Bug Janitor Service 2025-01-24 18:42:30 UTC
A possibly relevant merge request was started @ https://invent.kde.org/frameworks/kxmlgui/-/merge_requests/269
Comment 4 Christoph Cullmann 2025-03-09 19:38:21 UTC
Git commit 8c9fb02a1d37672b26a03a9dd9e8675743deb269 by Christoph Cullmann.
Committed on 09/03/2025 at 19:35.
Pushed by cullmann into branch 'master'.

ensure KMainWindow::canBeRestored is working with no data

old behavior did always pretend there is data for window 1

M  +2    -4    src/kmainwindow.cpp

https://invent.kde.org/frameworks/kxmlgui/-/commit/8c9fb02a1d37672b26a03a9dd9e8675743deb269