[PATCH] kconfig: sync main view with search dialog current menu

From: Marco Costalba
Date: Sat Oct 21 2006 - 05:58:30 EST


When changing current menu in search dialog update also main view

Signed-off-by: Marco Costalba <mcostalba@xxxxxxxxx>
---
scripts/kconfig/qconf.cc | 5 ++++-
scripts/kconfig/qconf.h | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc
index 393f374..eec81b0 100644
--- a/scripts/kconfig/qconf.cc
+++ b/scripts/kconfig/qconf.cc
@@ -1176,7 +1176,7 @@ void ConfigInfoView::contentsContextMenu
Parent::contentsContextMenuEvent(e);
}

-ConfigSearchWindow::ConfigSearchWindow(QWidget* parent, const char *name)
+ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow* parent,
const char *name)
: Parent(parent, name), result(NULL)
{
setCaption("Search Config");
@@ -1200,6 +1200,9 @@ ConfigSearchWindow::ConfigSearchWindow(Q
info = new ConfigInfoView(split, name);
connect(list->list, SIGNAL(menuChanged(struct menu *)),
info, SLOT(setInfo(struct menu *)));
+ connect(list->list, SIGNAL(menuChanged(struct menu *)),
+ parent, SLOT(setMenuLink(struct menu *)));
+
layout1->addWidget(split);

if (name) {
diff --git a/scripts/kconfig/qconf.h b/scripts/kconfig/qconf.h
index 6a9e3b1..8d11f3c 100644
--- a/scripts/kconfig/qconf.h
+++ b/scripts/kconfig/qconf.h
@@ -279,7 +279,7 @@ class ConfigSearchWindow : public QDialo
Q_OBJECT
typedef class QDialog Parent;
public:
- ConfigSearchWindow(QWidget* parent, const char *name = 0);
+ ConfigSearchWindow(ConfigMainWindow* parent, const char *name = 0);

public slots:
void saveSettings(void);
--
1.4.3.ge193
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/