* [PATCH] xconfig: Fix the filename for GUI settings
@ 2013-10-06 18:21 Ben Hutchings
2013-10-08 21:33 ` Yann E. MORIN
0 siblings, 1 reply; 2+ messages in thread
From: Ben Hutchings @ 2013-10-06 18:21 UTC (permalink / raw)
To: linux-kbuild, Michal Marek
[-- Attachment #1: Type: text/plain, Size: 1601 bytes --]
Currently the qconf program invoked by 'make xconfig' stores GUI
settings in the file ~/.config/Unknown\ Organization.conf. This name
is apparently generated by the QSettings class when no organisation
or application name are specified.
This is obviously not a sensible filename (nor does it seem sensible
that these QSettings parameters are optional!). Pass the names
'kernel.org' and 'qconf', resuling in the filename
~/.config/kernel.org/qconf.conf.
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
---
scripts/kconfig/qconf.cc | 5 +++++
scripts/kconfig/qconf.h | 1 +
2 files changed, 6 insertions(+)
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc
index 1500c38..9d3b04b 100644
--- a/scripts/kconfig/qconf.cc
+++ b/scripts/kconfig/qconf.cc
@@ -69,6 +69,11 @@ static inline QString qgettext(const QString& str)
return QString::fromLocal8Bit(gettext(str.latin1()));
}
+ConfigSettings::ConfigSettings()
+ : QSettings("kernel.org", "qconf")
+{
+}
+
/**
* Reads a list of integer values from the application settings.
*/
diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h
index 3715b3e..bde0c6b 100644
--- a/scripts/kconfig/qconf.h
+++ b/scripts/kconfig/qconf.h
@@ -32,6 +32,7 @@ class ConfigMainWindow;
class ConfigSettings : public QSettings {
public:
+ ConfigSettings();
Q3ValueList<int> readSizes(const QString& key, bool *ok);
bool writeSizes(const QString& key, const Q3ValueList<int>& value);
};
--
Ben Hutchings
Who are all these weirdos? - David Bowie, reading IRC for the first time
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] xconfig: Fix the filename for GUI settings
2013-10-06 18:21 [PATCH] xconfig: Fix the filename for GUI settings Ben Hutchings
@ 2013-10-08 21:33 ` Yann E. MORIN
0 siblings, 0 replies; 2+ messages in thread
From: Yann E. MORIN @ 2013-10-08 21:33 UTC (permalink / raw)
To: Ben Hutchings; +Cc: linux-kbuild, Michal Marek
Ben, All,
On 2013-10-06 19:21 +0100, Ben Hutchings spake thusly:
> Currently the qconf program invoked by 'make xconfig' stores GUI
> settings in the file ~/.config/Unknown\ Organization.conf. This name
> is apparently generated by the QSettings class when no organisation
> or application name are specified.
>
> This is obviously not a sensible filename (nor does it seem sensible
> that these QSettings parameters are optional!). Pass the names
> 'kernel.org' and 'qconf', resuling in the filename
> ~/.config/kernel.org/qconf.conf.
I'll take this in my tree for 3.13. Thanks!
Regards,
Yann E. MORIN.
> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
> ---
> scripts/kconfig/qconf.cc | 5 +++++
> scripts/kconfig/qconf.h | 1 +
> 2 files changed, 6 insertions(+)
>
> diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc
> index 1500c38..9d3b04b 100644
> --- a/scripts/kconfig/qconf.cc
> +++ b/scripts/kconfig/qconf.cc
> @@ -69,6 +69,11 @@ static inline QString qgettext(const QString& str)
> return QString::fromLocal8Bit(gettext(str.latin1()));
> }
>
> +ConfigSettings::ConfigSettings()
> + : QSettings("kernel.org", "qconf")
> +{
> +}
> +
> /**
> * Reads a list of integer values from the application settings.
> */
> diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h
> index 3715b3e..bde0c6b 100644
> --- a/scripts/kconfig/qconf.h
> +++ b/scripts/kconfig/qconf.h
> @@ -32,6 +32,7 @@ class ConfigMainWindow;
>
> class ConfigSettings : public QSettings {
> public:
> + ConfigSettings();
> Q3ValueList<int> readSizes(const QString& key, bool *ok);
> bool writeSizes(const QString& key, const Q3ValueList<int>& value);
> };
>
> --
> Ben Hutchings
> Who are all these weirdos? - David Bowie, reading IRC for the first time
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-10-08 21:33 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-06 18:21 [PATCH] xconfig: Fix the filename for GUI settings Ben Hutchings
2013-10-08 21:33 ` Yann E. MORIN
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox