diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-03-10 17:13:15 +0100 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-03-11 18:50:24 +0100 |
commit | 8741908b3e29d35a33eeab6de60175958db8e54b (patch) | |
tree | 1d10cfa5b3b3ce22f7408aecbea33635de01d419 /scripts/kconfig/qconf.h | |
parent | kconfig: rename zconf.y to parser.y (diff) | |
download | linux-8741908b3e29d35a33eeab6de60175958db8e54b.tar.xz linux-8741908b3e29d35a33eeab6de60175958db8e54b.zip |
kconfig: fix 'Save As' menu of xconfig
The 'Save As' menu of xconfig is not working; it always saves the
kernel configuration into the default file irrespective of the file
chosen in the dialog box.
The 'Save' menu always writes into the default file, but it would
make more sense to write into the file previously chosen by 'Load'
or 'Save As'.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'scripts/kconfig/qconf.h')
-rw-r--r-- | scripts/kconfig/qconf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h index 41df466e67d9..45bfe9b2b966 100644 --- a/scripts/kconfig/qconf.h +++ b/scripts/kconfig/qconf.h @@ -291,6 +291,7 @@ protected: class ConfigMainWindow : public QMainWindow { Q_OBJECT + char *configname; static QAction *saveAction; static void conf_changed(void); public: |