diff options
author | Boris Barbulovski <bbarbulovski@gmail.com> | 2015-09-22 14:36:21 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.com> | 2015-10-14 08:59:02 -0400 |
commit | c14fa5e123cea969b0aca4b6a4e13ce6937e4ed2 (patch) | |
tree | 1171b33340d4db77c970da8898dab28a9ecf15c7 /scripts | |
parent | 9bfda0ab03877855d9018712a046de0c9e147d34 (diff) |
Port xconfig to Qt5 - Use correct signal names.
Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com>
Signed-off-by: Thiago Macieira <thiago.macieira@intel.com>
Signed-off-by: Michal Marek <mmarek@suse.com>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/kconfig/qconf.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index e0518cab500e..a8b54521f754 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc | |||
@@ -270,7 +270,7 @@ ConfigItem::~ConfigItem(void) | |||
270 | ConfigLineEdit::ConfigLineEdit(ConfigView* parent) | 270 | ConfigLineEdit::ConfigLineEdit(ConfigView* parent) |
271 | : Parent(parent) | 271 | : Parent(parent) |
272 | { | 272 | { |
273 | connect(this, SIGNAL(lostFocus()), SLOT(hide())); | 273 | connect(this, SIGNAL(editingFinished()), SLOT(hide())); |
274 | } | 274 | } |
275 | 275 | ||
276 | void ConfigLineEdit::show(ConfigItem* i) | 276 | void ConfigLineEdit::show(ConfigItem* i) |
@@ -318,7 +318,7 @@ ConfigList::ConfigList(ConfigView* p, const char *name) | |||
318 | setSortingEnabled(-1); | 318 | setSortingEnabled(-1); |
319 | setRootIsDecorated(true); | 319 | setRootIsDecorated(true); |
320 | 320 | ||
321 | connect(this, SIGNAL(selectionChanged(void)), | 321 | connect(this, SIGNAL(itemSelectionChanged(void)), |
322 | SLOT(updateSelection(void))); | 322 | SLOT(updateSelection(void))); |
323 | 323 | ||
324 | if (name) { | 324 | if (name) { |