diff options
author | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-07 18:18:57 +0900 |
---|---|---|
committer | Masahiro Yamada <masahiroy@kernel.org> | 2020-08-14 13:38:39 +0900 |
commit | 740fdef8534f17184f0d57390be83a8a37e897f9 (patch) | |
tree | 00ae60653db9f3f1ffeefbe193ffb7f80691bda3 /scripts/kconfig/qconf.h | |
parent | 1b4263e7507f5b9fd2f1f675f712f95c1394a18f (diff) | |
download | linux-740fdef8534f17184f0d57390be83a8a37e897f9.tar.gz linux-740fdef8534f17184f0d57390be83a8a37e897f9.tar.bz2 linux-740fdef8534f17184f0d57390be83a8a37e897f9.zip |
kconfig: qconf: remove name from ConfigSearchWindow constructor
This constructor is only called with "search" as the second argument.
Hard-code the name in the constructor, and drop it from the function
argument.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Diffstat (limited to 'scripts/kconfig/qconf.h')
-rw-r--r-- | scripts/kconfig/qconf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h index 6e6bb0a96348..335f0776984f 100644 --- a/scripts/kconfig/qconf.h +++ b/scripts/kconfig/qconf.h @@ -272,7 +272,7 @@ class ConfigSearchWindow : public QDialog { Q_OBJECT typedef class QDialog Parent; public: - ConfigSearchWindow(ConfigMainWindow* parent, const char *name = 0); + ConfigSearchWindow(ConfigMainWindow *parent); public slots: void saveSettings(void); |