Details
-
Bug
-
Resolution: Unresolved
-
Not Evaluated
-
None
-
6.9
-
None
Description
/*! Destroys the file dialog. */ QFileDialog::~QFileDialog() { Q_D(QFileDialog); #if QT_CONFIG(settings) d->saveSettings(); #endif
#if QT_CONFIG(settings) void QFileDialogPrivate::saveSettings() { Q_Q(QFileDialog); QSettings settings(QSettings::UserScope, u"QtProject"_s); settings.beginGroup("FileDialog"); ...
Please don't write to a global file from ALL applications. This should a) be opt-in; b) be in an application-specific file.
Attachments
Issue Links
- relates to
-
QTBUG-133804 Qt 5 and Qt 6 both use QtProject.conf, but in an incompatible way
-
- Open
-