[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <e5bfff550610051012r659089f3ofec6aedb7be05e02@mail.gmail.com>
Date: Thu, 5 Oct 2006 19:12:59 +0200
From: "Marco Costalba" <mcostalba@...il.com>
To: sam@...nborg.org, zippel@...ux-m68k.org
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH 0/1] kconfig: sync main view with search dialog current menu
When changing current menu in search dialog update also main view
Signed-off-by: Marco Costalba <mcostalba@...il.com>
---
I've found handy this 'jump to context behaviour.
Please consider for applying.
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.2.1.gbc1a5
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists