# HG changeset patch # User sheepluva # Date 1319273946 -7200 # Node ID 46895724fd7fab65873c7905454ca9ab0bb7f687 # Parent d56d188024818aaba99ec7259202931c7b32c37c minor signal fail fix diff -r d56d18802481 -r 46895724fd7f QTfrontend/ui/page/pagetraining.cpp --- a/QTfrontend/ui/page/pagetraining.cpp Sat Oct 22 10:52:07 2011 +0200 +++ b/QTfrontend/ui/page/pagetraining.cpp Sat Oct 22 10:59:06 2011 +0200 @@ -104,7 +104,7 @@ void PageTraining::connectSignals() { connect(lstMissions, SIGNAL(currentItemChanged(QListWidgetItem*, QListWidgetItem*)), this, SLOT(updateInfo())); - connect(lstMissions, SIGNAL(clicked()), this, SLOT(updateInfo())); + connect(lstMissions, SIGNAL(itemClicked(QListWidgetItem*)), this, SLOT(updateInfo())); connect(lstMissions, SIGNAL(itemDoubleClicked(QListWidgetItem*)), this, SLOT(startSelected())); connect(btnPreview, SIGNAL(clicked()), this, SLOT(startSelected())); connect(btnStart, SIGNAL(clicked()), this, SLOT(startSelected()));