diff options
author | Cyrill V. Gorcunov <gorcunov@gmail.com> | 2007-02-14 03:32:59 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-14 11:09:52 -0500 |
commit | 786fb18d015cc5f34284d426e055ddd7a3dbb53b (patch) | |
tree | bd77e96cab64a3fe475b274d62c8589bed51ead5 /scripts/kconfig/qconf.cc | |
parent | 66e7c7230fed159e138fc1292ee662b8bbdb74d6 (diff) |
[PATCH] qconf: fix showing help info on failed search
qconf does not clear help text in search window if previous search has been
failed.
Signed-off-by: Cyrill V. Gorcunov <gorcunov@mail.ru>
Cc: Roman Zippel <zippel@linux-m68k.org>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts/kconfig/qconf.cc')
-rw-r--r-- | scripts/kconfig/qconf.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 83a270347c25..99124458dbd5 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc | |||
@@ -1248,6 +1248,7 @@ void ConfigSearchWindow::search(void) | |||
1248 | 1248 | ||
1249 | free(result); | 1249 | free(result); |
1250 | list->list->clear(); | 1250 | list->list->clear(); |
1251 | info->clear(); | ||
1251 | 1252 | ||
1252 | result = sym_re_search(editField->text().latin1()); | 1253 | result = sym_re_search(editField->text().latin1()); |
1253 | if (!result) | 1254 | if (!result) |