Major contribution: Connected clicked signal from listbox to displayDetails slot
authorSebastian Brannstrom <sebastianb@symbian.org>
Mon, 23 Aug 2010 17:07:32 +0100
changeset 37 1ced6e446fd4
parent 36 2886a23e4d5d
child 38 6dfc2ca6334b
Major contribution: Connected clicked signal from listbox to displayDetails slot
contactengine/mainwindow.cpp
--- a/contactengine/mainwindow.cpp	Thu Aug 19 19:21:12 2010 -0700
+++ b/contactengine/mainwindow.cpp	Mon Aug 23 17:07:32 2010 +0100
@@ -31,7 +31,7 @@
     this->details = new DetailsGV(this,ui->graphicsView);
     connect(this->details,SIGNAL(closeMe()),this,SLOT(close()));
     connect(this->details,SIGNAL(backToList()),this, SLOT(displayList()));
-
+    connect(ui->listView, SIGNAL(clicked(QModelIndex)),this, SLOT(displayDetails()));
     ui->stackedWidget->setCurrentIndex(MainWindow::EListPage);
 
 }