Skip to content

Commit

Permalink
Port xconfig to Qt5 - Use correct signal names.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Boris Barbulovski authored and Michal Marek committed Oct 14, 2015
1 parent 9bfda0a commit c14fa5e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/kconfig/qconf.cc
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ ConfigItem::~ConfigItem(void)
ConfigLineEdit::ConfigLineEdit(ConfigView* parent)
: Parent(parent)
{
connect(this, SIGNAL(lostFocus()), SLOT(hide()));
connect(this, SIGNAL(editingFinished()), SLOT(hide()));
}

void ConfigLineEdit::show(ConfigItem* i)
Expand Down Expand Up @@ -318,7 +318,7 @@ ConfigList::ConfigList(ConfigView* p, const char *name)
setSortingEnabled(-1);
setRootIsDecorated(true);

connect(this, SIGNAL(selectionChanged(void)),
connect(this, SIGNAL(itemSelectionChanged(void)),
SLOT(updateSelection(void)));

if (name) {
Expand Down

0 comments on commit c14fa5e

Please sign in to comment.